服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - Nginx - nginx 开启 pathinfo的过程详解

nginx 开启 pathinfo的过程详解

2020-01-10 18:00海底苍鹰 Nginx

这篇文章主要介绍了nginx 开启 pathinfo的过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

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

1,url重写

?
1
2
3
4
5
6
7
8
9
10
location / {  //方法1
 if (!-e $request_filename)
 {
 rewrite ^/(.*)$ /index.php/$1 last;
 break;
 }
location / {  //方法2
 try_files $uri $uri/ /index.php$uri;
}

2,pathinfo设置

?
1
2
3
4
5
6
7
8
9
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来决定。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.51yip.com/apachenginx/1982.html

延伸 · 阅读

精彩推荐