博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx(PHP/fastcgi)的PATH_INFO问题
阅读量:5041 次
发布时间:2019-06-12

本文共 746 字,大约阅读时间需要 2 分钟。

引用:

http://www.laruence.com/2009/11/13/1138.html

 

server {        listen       80;        server_name  localhost;        index index.html index.htm index.php;        root /alidata/www/pro;        location ~ .*\.(php|php5)?$        {                #fastcgi_pass  unix:/tmp/php-cgi.sock;                fastcgi_pass  127.0.0.1:9000;                fastcgi_index index.php;                include fastcgi.conf;        }

 

location ~ .*\.(php|php5)        {                #fastcgi_pass  unix:/tmp/php-cgi.sock;                fastcgi_pass  127.0.0.1:9000;                fastcgi_index index.php;                include fastcgi.conf;                fastcgi_param PATH_INFO $fastcgi_script_name;        }

 

转载于:https://www.cnblogs.com/bass6/p/5476713.html

你可能感兴趣的文章
H5项目常见问题及注意事项
查看>>
索尼(SONY) SVE1512S7C 把WIN8降成WIN7图文教程
查看>>
时间模块 && time datetime
查看>>
jquery自动生成二维码
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
【JavaScript】Write和Writeln的区别
查看>>
百度编辑器图片在线流量返回url改动
查看>>
我对你的期望有点过了
查看>>
微信小程序wx:key以及wx:key=" *this"详解:
查看>>
下拉框比较符
查看>>
2.2.5 因子的使用
查看>>
css选择器
查看>>
photoplus
查看>>
Python 拓展之推导式
查看>>
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>