首页 > 系统 > Linux教程

nginx 开启 pathinfo的过程详解

admin Linux教程 2022-02-10 10:39:48 nginx   开启   pathinfo"

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来决定。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持潘少俊衡。

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/jtjc/Linux/110721.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持