location / {
index index.php;
#如果文件不存在則嘗試TP解析
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
location ~ .+\.php($|/) {
fastcgi_pass unix:/dev/shm/php-fcgi.sock;
#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;
}