一级域名301重定向到www二级域名

301重定向有利于百度的搜索

例如一个域名 www.test.com如果不做设置会产生4个网址,

(1)test.com(2)www.test.com(3)test.com/default.html(4)www.test.com/default.html

会导致网址的PR值被分散

.htaccess设置

Options +FollowSymLinks

IndexIgnore */*

RewriteEngine on



RewriteCond %{http_host} ^ytnc.gov.cn [nc]

RewriteRule ^(.*)$ http://www.ytnc.gov.cn/$1 [r=301,NC,L]

NC表示不区分大小写

L表示不使用后续规则

你可能感兴趣的:(重定向)