nginx下thinkphp5项目路由无效问题
2019-03-02 本文已影响0人
JeasonZuo
修改nginx.conf 文件
location / {
//转发规则
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}