nginx 开启 pathinfo的过程详解

Valentina ·
更新时间:2024-09-20
· 927 次阅读

apache往nginx去转,代码端用到了$_SERVER['PATH_INFO'],对于nginx默认是不开启pathinfo的。所以我们就要手动开启

1,url重写

location / { //方法1 if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } } location / { //方法2 try_files $uri $uri/ /index.php$uri; }

2,pathinfo设置

location ~ .*\.(php|php5)(.*)?$ //注意这块,配置重写的url { 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 PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi.conf; }

这块要注意,location后正则要根据重写的url来决定。

您可能感兴趣的文章:Nginx如何实现pathinfo模式的方法详解解决nginx不支持thinkphp中pathinfo的问题Ubuntu下Nginx配置ThinkPHP的Pathinfo和URl Rewrite模式nginx+thinkphp下解决不支持pathinfo模式nginx中配置pathinfo模式示例Nginx隐藏index.php和Pathinfo模式配置例子



Nginx

需要 登录 后方可回复, 如果你还没有账号请 注册新账号