内容页如何301重定向
内容页实现301重定向的方法有:
1.ASP下的301重定向,代码如:
<%
Status=”301 Moved Permanently”
AddHeader “Location”,”http://”
%>
2.ASP .NET下的301重定向,代码如:
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();
本文来源:https://www.yuntue.com/post/78972.html | 云服务器网,转载请注明出处!