如何在url htaccess中删除index.php

时间:2014-01-27 11:26:25

标签: .htaccess

如何在我的网址中删除index.php

我的htaccess是

RewriteCond %{THE_REQUEST} ^.*\/index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]

我以http://domain.com/index.php访问我的网站,重定向到http://domain.com我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

试试这个,

RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php($|\ |\?)
RewriteRule ^ /%1 [R=301,L]