內(nèi)容頁如何301重定向

小新
236
2020-12-25 17:38:58
欄目: 編程語言

內(nèi)容頁如何301重定向

內(nèi)容頁實(shí)現(xiàn)301重定向的方法有:

1.ASP下的301重定向,代碼如:

<%@ Language=VB %>

<%

Status=”301 Moved Permanently”

AddHeader “Location”,”http://”

%>

2.ASP .NET下的301重定向,代碼如:

< runat=”server”>

private void Page_Load(object sender, System.EventArgs e)

{

Status = “301 Moved Permanently”;

AddHeader (“Location”,”http://www);

}

3.PHP下的301重定向,代碼如:

header(“HTTP/1.1 301 Moved Permanently”);

header(“Location:http://lusongsong.com/”);

exit();

0