且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

htaccess删除index.php和index.php/

更新时间:2023-02-21 22:10:22

希望这行得通!

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|assets|robots\
.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]