網上通用解決方法的配置以下:php
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指令便可。html
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; } }