🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
我们还可以通过修改以下代码,强制将访问的index.php去除,通过修改`application/common/middleware/CommonInit.php`中的`handle`方法,在该方法内开头处添加如下代码即可 ~~~bash if (stripos(request()->url(), "/index.php") === 0) { $url = str_replace("/index.php", "", request()->url()); $url = $url ?: "/"; header("HTTP/1.1 301 Moved Permanently"); header("Location: " . $url); exit; } ~~~