有时因为特殊的原因,我们需要对网站进行改版,或者更换新域名,这时为了不损失网站在搜索引擎上的排名和权重或者PR值,需要告诉搜索引擎我们的内容永久的转移到另一个地方,这时我们就必须要做301永久重定向。 301重定向是什么? 301代表永久性转移(Permanently Moved),301重定向是网页更改地址后对搜索引擎友好的最好方法,只要不是暂时搬移的情况,都建议使用301来做转址。 如何进行301重定向? PHP下的301重定向 <html> <head> <title>HTTP/1.1 301 Moved Permanently</title> <? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://chinambs.com" ); ?> </head> <body> HTTP/1.1 301 Moved Permanently </body> </html> ASP下的301重定向 <%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location",http://chinambs.com %> ASP .NET下的301重定向 <script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"; Response.AddHeader ("Location","http://chinambs.com); } </script> (责任编辑:熊猫蜀黍) |