在.htaccess中重写index.php和index.html

时间:2011-01-10 11:17:24

标签: .htaccess redirect mod-rewrite url-rewriting

使用.htaccess,如何重写网址,以便在访问者输入时

http://www.domain.com/index.php
http://www.domain.com/index.html

他们将被重定向到http://www.domain.com/

我尝试了重定向,但它让我进入了循环......

请你帮我解决这个问题。

1 个答案:

答案 0 :(得分:6)

RewriteEngine On
RewriteRule ^index\.(php|html?)$ http://www.mydomain.com/ [R=301,L]