Nginx(PHP/fastcgi)的PATH_INFO问题

引用:

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;
}
上一篇:在Asp.Net的Global.asax中Application_Error跳转到自定义错误页无效的解决办法


下一篇:jstl的formatNumber标签的四舍五入问题