请教一个 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;
}
解析漏洞。但是这个站点就放一个 php 文件没有上传功能 没有人会啊 rewrite .............................................................够长 做成文件夹文件夹里放个index.xxx
页:
[1]