用ASP程序的网站代码是如何实现301跳转
日期:2022/9/2 12:35:13 阅读:130
用ASP程序的网站代码是如何实现301跳转
方式实现ASP内页301跳转
<%@ Language=VBScript %>
<%
Response.Status=”301 Moved Permanently”
Response.AddHeader “Location”, “http://www.cmh.cn”
%>
方式实现ASP内页301跳转
用ASP代码方式实现ASP内页301跳转
<%@ Language=VBScript %>
<%
Response.Status=”301 Moved Permanently”
Response.AddHeader “Location”, “http://www.cmh.cn”
%>