Meiam 发表于 2013-8-15 12:06:25

请教一个 NGINX 的问题

怎么配置 无扩展名文件 解析 成 PHP

比如siri.xx.cn/1   = siri.xx.cn/1.php

server
      {
                listen       8888;
                server_name siri.xx.cn;
                index index.html index.htm index.php default.html default.htm default.php;
                root/home/wwwroot/auth;

                location ~ .*\.(php|php5)?$
                        {
                              try_files $uri =404;
                              fastcgi_passunix:/tmp/php-cgi.sock;
                              fastcgi_index index.php;
                              include fcgi.conf;

                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                              expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                              expires      12h;
                        }

                access_log off;

                ssl on;
                ssl_certificate/usr/local/nginx/conf/server.crt;
                ssl_certificate_key/usr/local/nginx/conf/server_nopwd.key;
      }

star826 发表于 2013-8-15 12:07:42

解析漏洞。但是这个站点就放一个 php 文件没有上传功能

低调路过 发表于 2013-8-15 12:10:01

没有人会啊

Meiam 发表于 2013-8-15 13:14:14

rewrite .............................................................够长

Meiam 发表于 2013-8-15 18:22:06

做成文件夹文件夹里放个index.xxx
页: [1]
查看完整版本: 请教一个 NGINX 的问题