内容页如何301重定向

493
2020/12/25 17:38:58
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

内容页如何301重定向

内容页实现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();

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: 301重定向会有什么影响