配置nginx,支持php的pathinfo路径模式
生活随笔
收集整理的這篇文章主要介紹了
配置nginx,支持php的pathinfo路径模式
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
nginx模式默認是不支持pathinfo模式的,類似index.php/index形式的url會被提示找不到頁面。下面的通過正則找出實際文件路徑和pathinfo部分的方法,讓nginx支持pathinfo。
server {listen 8080;server_name ewifiportal.com;#charset koi8-r;#access_log logs/host.access.log main;location / {root D:/Users/xc/Zend/workspaces/DefaultWorkspace/EWiFiPortal;index index.html index.htm index.php;}#error_page 404 /404.html;# redirect server error pages to the static page /50x.html#error_page 500 502 503 504 /50x.html;location = /50x.html {root html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {# proxy_pass http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000#location ~ \.php {root D:/Users/xc/Zend/workspaces/DefaultWorkspace/EWiFiPortal;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_split_path_info ^(.+\.php)(.*)$;#fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;fastcgi_param PATH_INFO $fastcgi_path_info;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;include fastcgi_params;}# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht {# deny all;#}}要點:
1.~ \.php 后面不能有$? 以便能匹配所有 *.php/* 形式的url
2. 需要設置path_info
fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info;轉載于:https://www.cnblogs.com/vania/p/4974337.html
總結
以上是生活随笔為你收集整理的配置nginx,支持php的pathinfo路径模式的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: iOS-NSData与NSDiction
- 下一篇: Linux 编译安装内核