THINKPHP的NGINX rewrite的兩種配置
阿新 • • 發佈:2019-01-31
一、普通方式
server {
...
location / {
index index.htm index.html index.php;
#訪問路徑的檔案不存在則重寫URL轉交給ThinkPHP處理
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}
location ~ \.php/?.*$ {
root /var/www/html/website;
fastcgi_pass 127.0 .0.1:9000;
fastcgi_index index.php;
#載入Nginx預設"伺服器環境變數"配置
include fastcgi.conf;
#設定PATH_INFO並改寫SCRIPT_FILENAME,SCRIPT_NAME伺服器環境變數
set $fastcgi_script_name2 $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+\.php)(/.+)$") {
set $fastcgi_script_name2 $1;
set $path_info $2;
}
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name2;
fastcgi_param SCRIPT_NAME $fastcgi_script_name2;
}
}
二、其實應該使用更簡單的方法,fastcgi模組自帶了一個fastcgi_split_path_info指令專門用來解決此類問題的,該指令會根據給定的正則表示式來分隔URL,從而提取出指令碼名和path info資訊,使用這個指令可以避免使用if語句,配置更簡單。
另外判斷檔案是否存在也有更簡單的方法,使用try_files指令即可。
server {
...
location / {
index index.htm index.html index.php;
#如果檔案不存在則嘗試TP解析
try_files $uri /index.php$uri;
}
location ~ .+\.php($|/) {
root /var/www/html/website;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#設定PATH_INFO,注意fastcgi_split_path_info已經自動改寫了fastcgi_script_name變數,
#後面不需要再改寫SCRIPT_FILENAME,SCRIPT_NAME環境變數,所以必須在載入fastcgi.conf之前設定
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
#載入Nginx預設"伺服器環境變數"配置
include fastcgi.conf;
}
}