什么是301永久定向?
來源:昆明多彩網(wǎng)絡(luò)公司 日期:2010-10-31 閱讀: 發(fā)表評論
什么是301永久定向?將某個域名設(shè)置了301永久定向可以讓該域名轉(zhuǎn)到另外一個域名上去,同時在seo角度來看,可以將該域名的權(quán)重等也一并轉(zhuǎn)移過去,在seo領(lǐng)域廣泛使用。
在IIS中設(shè)置301永久定向:
在apache中設(shè)置301永久定向:
在Apache 中,有個很重要的文件.htaccess,通過對它的設(shè)置,可以實現(xiàn)很多強大的功能,301 重定向只是其中之一。找到redirect permanent / http://www.akadana.com:
其他301永久定向:
1.PHP下的301重定向
<?
Header( "HTTP/1.1 301 Moved Permanently" ) ;
Header( "Location: http://www.akadana.com/" );
?>
2.ASP下的301重定向
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.akadana.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.akadana.com/");
}
</script>
發(fā)表評論評論列表(有 條評論)