最简单的Htaccess用于将index.php / html和非www重定向到www Root

时间:2011-05-19 15:01:04

标签: .htaccess redirect

使用.htaccess将index.php,index.html和非www变体重定向到www root的最简单方法是什么?例如,重定向

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

http://www.example.com

1 个答案:

答案 0 :(得分:0)

RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]