试试这一份吧!我也是在别的地方看到的 其中aaaa改成你的二级目录名字就行
location /aaaa/ {
if (-f $request_filename/index.html){
rewrite (.*) /index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) /index.php;
}
if (!-f $request_filename){
rewrite (.*) /aaaa/index.php;
}
}
在js文件添加这一段试一下 检测到URL没有斜杠时,自动进行重定向:
if (window.location.pathname.substr(-1) != '/') {
window.location.pathname += '/';
}