星期四 阴转小雨 6~10℃
301 重定向多个域名到同一个域名
在网站根目录建一个 index 文件,代码如下:
index.php
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.friends8.com/sports/");
exit();
?>
因为 blog 用的还是 asp,所以这里也记一下 asp 的 301 方法
index.asp
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.zhugao.net/today/"
Response.End
%>
参考:http://lusongsong.com/reed/175.html
对应子页面的永久重定向
上面的设置只能实现跳转首页,不能实现对应子页面的跳转,下面这个方法可以实现。
IIS 设置
1、新建一个临时站点(例如我的叫 301_zhugao.net),这个站点“属性”设置如下图,注意转向地址后面要加$s$q
2、注意,在“正式站点”里只要添加一个域名标识即可,其他要转向的域名都添加在“临时站点”里。
3、设置好后,有必要的话重启一下 iis.
301重定向代码和测试工具:
国外:http://www.seoconsultants.com/tools/headers
国内:http://www.ranknow.cn/tools/redirectcheck
参考:
http://www.xhbest.org/j/20120407470.html
友吧今天
处理 301 重定向,多个域名转向到 www.friends8.com
发表评论