隐藏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;
}
}
麻烦就解决了!
个人经

隐藏thinkphp6的入口文件实现方式最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/3875.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>