当前位置:首页 > 建站知识 > 建站知识 > 正文

301重定向实现代码及作用

来源:征帆网络  作者:ymars  日期:2013-2-1

    长沙网站制作-征帆网络研究了很久关于页面永久性转移(301永久重定向)是一种非常重要的自动转向技术。在更换域名的时候起着不可替代的作用,他不仅可以实现网页的批量指定转跳,还可促进搜索引擎优化效果。301重定向是网址重定向最为可行的一种办法。当网站的域名发生变更后,搜索引擎只对新网址进行索引,同时又会把旧地址下原有的外部链接如数转移到新地址下,从而不会让网站的排名因为网址变更而收到丝毫影响。当然各个搜索引擎对301的处理方式是不一样的。下面征帆网络的小编为大家详细讲解一下常用的ASP,JSP,ASP.NET,PHP的设置方法:

ASP:
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.ymars.com/"
Response.End

PHP:
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://www.ymars.com/");
exit();

JSP:
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.ymars.com/" );
response.setHeader( "Connection", "close" );
%>

ASP.Net:
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.ymars.com");
}
</script>

php:
<?php
$go=$_GET['go'];//获取跳转页面链接部分,如"thread-112-1.html",又如forum.php?fid=32等
header("HTTP/1.1 301 Moved Permanently");//发送301状态,之后的所有跳转均为301
header('location:http://www.ymars.com/'.$go);//根据go参数跳转到对应页面
exit;
?>