最近在用thinkphp做一個(gè)項(xiàng)目,基本完成后部署到nginx服務(wù)器上才發(fā)覺(jué)nginx是不支持pathinfo的那么我們?nèi)绾蝸?lái)處理呢。
Nginx環(huán)境
在Nginx低版本中,是不支持PATHINFO的,但是可以通過(guò)在Nginx.conf(在/usr/local/nginx/conf/nginx.conf或者通過(guò)find / | grep nginx.conf來(lái)查找位置)中配置轉(zhuǎn)發(fā)規(guī)則實(shí)現(xiàn):在nginx配置文件中添加:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
其實(shí)內(nèi)部是轉(zhuǎn)發(fā)到了ThinkPHP提供的兼容模式的URL,利用這種方式,可以解決其他不支持PATHINFO的WEB服務(wù)器環(huán)境。
如果你的ThinkPHP安裝在二級(jí)目錄,Nginx的偽靜態(tài)方法設(shè)置如下,其中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;
}
}
語(yǔ)法:rewrite regex replacement flag (last 相當(dāng)于apache里面的[L]標(biāo)記,表示rewrite。)