server {
listen 80;
server_name school.quxueabc.com;
root /www;
index index.html index.htm index.php;
access_log /www/log/error.log;
location / {
index index.htm index.html index.php;
访问路径的文件不存在则重写URL转交给ThinkPHP处理
if (!-e $request_filename) {
rewrite ^/(.)$ /index.php/$1 last;
break;
}
}
location ~ .php/?.$ {
root /www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
加载Nginx默认”服务器环境变量”配置
include fastcgi_params;
设置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;
}
}
http://www.thinkphp.cn/code/937.html
http://jichangxucode.blog.163.com/blog/static/2077133912014112232955795/
本文来自博客园,作者:breezecn,转载请注明原文链接:https://www.cnblogs.com/breezecn/p/19778295
联系作者: https://aboutbreeze.pages.dev/
浙公网安备 33010602011771号