简单配置nginx使之支持pathinfo

只需要修改3个地方就可以了,亲测成功,看代码有注解

location ~ \.php { #去掉$
root H:/PHPServer/WWW;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$; #增加这一句
fastcgi_param PATH_INFO $fastcgi_path_info; #增加这一句
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

server
{
listen 80;
server_name dejinio.com;
index index.html index.htm index.php;
root /data/www/dejinio/yun;
location ~ \.php {
include fastcgi_params;
fastcgi_pass unix:/tmp/php-fcgi.sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME /data/www/dejinio/yun$fastcgi_script_name;
}
}
posted @ 2018-04-04 17:07  俊偉  阅读(155)  评论(0编辑  收藏  举报
回顶部