LANP 配置文件

ThinkPHP框架Nginx配置      URL访问省去index.php

server
{
listen 80;
server_name 47.105.35.227;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/bszedu.com/public;

#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#error_page 404/404.html;
#SSL-END

#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
error_page 404 /404.html;
error_page 502 /502.html;
#ERROR-PAGE-END

#PHP-INFO-START PHP引用配置,可以注释或修改
include enable-php-71.conf;
#PHP-INFO-END

#REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
include /www/server/panel/vhost/rewrite/bszedu.com.conf;
#REWRITE-END

#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}

#一键申请SSL证书验证目录相关设置
location ~ \.well-known{
allow all;
}

#START-PHP
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}

location ~ \.php { #去掉$
#root C:/wwwroot/bszedu.com/public; # 上面有写,这里可不写
fastcgi_pass 127.0.0.1:4571;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$; #增加这一句
fastcgi_param PATH_INFO $fastcgi_path_info; #增加这一句
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;

}

#END-PHP
access_log /www/wwwlogs/bszedu.com.log;
error_log /www/wwwlogs/bszedu.com.error.log;
}

猜你喜欢

转载自www.cnblogs.com/zhidongjian/p/10122088.html