thinkphp在低版本Nginx 下支援PATHINFO的方法分享,nginxpathinfo
最近在用thinkphp做一個項目,基本完成後部署到nginx伺服器上才發覺nginx是不支援pathinfo的那麼我們如何來處理呢。
Nginx環境
在Nginx低版本中,是不支援PATHINFO的,但是可以通過在Nginx.conf(在/usr/local/nginx/conf/nginx.conf或者通過find / | grep nginx.conf來尋找位置)中配置轉寄規則實現:在nginx設定檔中添加:
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; }}
其實內部是轉寄到了ThinkPHP提供的相容模式的URL,利用這種方式,可以解決其他不支援PATHINFO的WEB伺服器環境。
如果你的ThinkPHP安裝在二級目錄,Nginx的偽靜態方法設定如下,其中youdomain是所在的目錄名稱。
location /youdomain/ { if (!-e $request_filename){ rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=$1 last; }}
如:
location /thinkphp/ { if (!-e $request_filename){ rewrite ^/thinkphp/(.*)$ /thinkphp/index.php?s=$1 last; }}
文法:rewrite regex replacement flag (last 相當於apache裡面的[L]標記,表示rewrite。)
http://www.bkjia.com/PHPjc/1133067.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1133067.htmlTechArticlethinkphp在低版本Nginx 下支援PATHINFO的方法分享,nginxpathinfo 最近在用thinkphp做一個項目,基本完成後部署到nginx伺服器上才發覺nginx是不支援...