使用.htaccess
,如何重写网址,以便在访问者输入时
http://www.domain.com/index.php
http://www.domain.com/index.html
他们将被重定向到http://www.domain.com/
。
我尝试了重定向,但它让我进入了循环......
请你帮我解决这个问题。
答案 0 :(得分:6)
RewriteEngine On
RewriteRule ^index\.(php|html?)$ http://www.mydomain.com/ [R=301,L]