ThinkPHP Rewrite Nginx 规则
在nginx的配置文件里面加上重写路径的代码,我使用的oneinstack安装的nginx所以路径为/usr/local/nginx/conf/
,找到你的域名的配置文件,添加如下代码:
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}