【发布时间】:2011-08-28 23:24:36
【问题描述】:
使用 .htaccess 将 index.php、index.html 和非 www 变体重定向到 www 根目录的最简单方法是什么?例如重定向
http://example.com/index.php
http://www.example.com/index.html
http://example.com
【问题讨论】:
使用 .htaccess 将 index.php、index.html 和非 www 变体重定向到 www 根目录的最简单方法是什么?例如重定向
http://example.com/index.php
http://www.example.com/index.html
http://example.com
【问题讨论】:
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
【讨论】:
RewriteRule。但是,如果index.html 无论如何都设置为默认页面,那也没关系,它仍然会在同一个地方结束。