解决 Nginx 下 ThinkPHP 路由失效
2021-11-14 18:59:31 # PHP

Nginx 对应的站点配置中添加下列配置,Laravel框架有此问题也是类似的解决方案

1
2
3
4
5
location / { 
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last; break;
}
}