Fork me on GitHub

简单配置nginx使之支持pathinfo

配置nginx.conf

location ~ \.php {   注意 一定要去掉$

 #去掉$     root          H:/PHPServer/WWW;   

 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  SCRIPT_FILENAME  $document_root$fastcgi_script_name;     

include        fastcgi_params; }

-----------------------------------

location / {
root /web/html;
index index.php index.html index.htm;
}

location ~ \.php {
root /web/html;
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 SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

posted @ 2015-12-31 13:59  我曾如此奢望  阅读(191)  评论(0编辑  收藏  举报