美文网首页
thinkphp6去掉index.php

thinkphp6去掉index.php

作者: liurongming | 来源:发表于2022-12-29 18:34 被阅读0次

在public目录下的.htaccess文件中,添加如下配置即可。

<IfModule mod_rewrite.c>
 Options +FollowSymlinks -Multiviews
 RewriteEngine On

 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

相关文章

网友评论

      本文标题:thinkphp6去掉index.php

      本文链接:https://www.haomeiwen.com/subject/bbitcdtx.html