如何在我的网址中删除index.php
我的htaccess是
RewriteCond %{THE_REQUEST} ^.*\/index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
我以http://domain.com/index.php
访问我的网站,重定向到http://domain.com
我该如何解决这个问题?
答案 0 :(得分:0)
试试这个,
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php($|\ |\?)
RewriteRule ^ /%1 [R=301,L]