thinkphp6去掉index.php

2022-12-29  本文已影响0人  liurongming

在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>
上一篇 下一篇

猜你喜欢

热点阅读