把不带前缀的域名转向到www.域名的Apache 301转向配置样例
By admin
- One minute read - 28 words各种不同的域名地址对于搜索引擎的除重(deduplication)来说是一个负担,有没有”/”和首页的文件连接,一个域名首页就可以有6个地址:
haohtml.com/
haohtml.com
haohtml.com/index.php
如果加上一些参数,比如用于来源跟踪等还会有更多无穷无尽的地址。
www.haohtml.com/?source=foobar
所以搜索引擎鼓励发布者 把URL标准化(归一化)。首先就是域名的归一化,原先我的设置为: www.haohtml.com / haohtml.com为别名。现在改为haohtml.com 301转向到www.haohtml.com
ServerName haohtml.com
RewriteEngine on
RewriteRule ^(.*)$ http://www.haohtml.com$1 [R=301,L]
如果没有mod_rewrite也可以设置mod_alias:
RedirectMatch 301 ^(.*)$ http://www.haohtml.com