nginx支持pathinfo
Posted layfork
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx支持pathinfo相关的知识,希望对你有一定的参考价值。
server { root /webserver/www/api; listen 80; server_name api.dnxia.com; location / { if (!-e $request_filename) { rewrite "^/(.*)$" /index.php last; } } location ~\.php{ root /webserver/www/api; index index.php; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; if (!-e $document_root$fastcgi_script_name) { return 404; } fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
以上是关于nginx支持pathinfo的主要内容,如果未能解决你的问题,请参考以下文章
phpshe b2c商城系统配置nginx支持pathinfo和rewrite的写法