使用.htaccess将index.php,index.html和非www变体重定向到www root的最简单方法是什么?例如,重定向
http://example.com/index.php
http://www.example.com/index.html
http://example.com
答案 0 :(得分:0)
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]