隐藏thinkphp6的入口文件实现方式
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last; break;
}
}
但是在linux宝塔环境下,访问/index.php/admin/login会触发URL重写代码,将链接转成/index.php/index.php/admin/login
造成错误
这个有勉强解决的连个方法一
、location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last; break;
}
}
放法二
location / {
if (!-e $request_filename) {
rewrite ^/index.php/(.*)$ /index.php/$1 last;
rewrite ^/(.*)$ /index.php/$1 last;
}
}
麻烦就解决了!
个人经
共有 0 条评论