网站现在有多个首页
www.域名.com
www.域名.com/index.html
www.域名.com/index.php
想要将index的域名都301到主域名下,我目前是这样写的
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^域名\.com/index\.php(/)? [NC]
RewriteCond %{HTTP_HOST} ^域名\.com/index\.html [NC]
RewriteRule ^(.*)$ http://www.域名.com/$1 [L,R=301]
</IfModule>
改了之后并没有自动跳转,返回的依然还是200,应该怎么去改?
访问网站,是会先读取 htaccess?