301永久重定向的方法

分类:网站推广 | lao8发表于 2007-11-9 17:38:00

一般情况下我们调整网站结构、改变网页目录、网站地址改变、或者网页修改后缀名,一般情况下我们都要做重定向,一般重定向有:301重定向, 302重定向meta fresh

作为seo需要了解的知识:

这里我们主要谈谈如何通过301 Redirect实现网页重定向:

PHP实现301重定向

<? Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.lao8.org" );
?>

ASP实现301重定向

<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", " http://www.lao8.org"
%>

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.lao8.org);
}
</script>

最后修改时间:2008-4-16 8:52:00

收藏到收藏夹

相关"301定向 301永久重定向"文章

网友点评
Yimi 2008-4-16 22:00:00 | [回复] 
不太明白。
spirit 2008-4-17 23:18:00 | [回复] 
具体怎么实现呢?
spirit at:2008-4-17 23:19:00 Replay:
asp 程序
老吧 at:2008-4-20 0:06:00 Replay:
老吧已经写了一个完整的例子,可以参考: http://www.lao8.org/html/8/2008-4-18/2008418100442.html

username(必填) email(必填) website

站内搜索

 

按分类归档

lao8 最新文章: