IIS 301重定向与程序代码实现301重定向的差别
1.PHP下的301重定向<binding protocol="https" bindingInformation="*:443:www.domain.com" /><binding protocol="https" bindingInformation="*:443:www.domain.com" />
<binding protocol="https" bindingInformation="*:443:www.domain.com" />2.ASP下的301重定向
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.mydomain.com/"
%>3.ASP .NET下的301重定向
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader ("Location","http://www.mydomain.com/");
}
</script>ColdFusion下的301重定向
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.mydomain.com/">
以下方法,本人测试过,皆可重定向,都可实现a.com,b.com重定向到c.com.但问出现在代码不能实现a.com/news/index.html重定向到c.com/news/index.html的页面上.而通过IIS做301重定向确可以实现这个。 如果,我们所需要重定向的域名有大量的内容被百度收录,并且,在搜索引擎上有一定的排名,我建议大家都采用IIS 301重定向,那样,既可以传递网站的权重,还不会导致流量丢失。而对于那些新域名转向到老域名,新域名又没有多少流量的情况下,也可以采用代码来实现重定向。
有不会做或需要做301重定向的朋友,可加我QQ:798843023
文档来源:服务器之家http://www.zzvips.com/article/86027.html
页:
[1]