在server中加入
include enable-php-pathinfo.conf;
引入nginx.conf下的这个文件即可.
如果是tp框架,主要隐藏index.php的入口文件,再加入下面这段
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}