windows虚拟主机怎么做301重定向

2025-04-26 06:59:17
推荐回答(1个)
回答1:

您好!页面是ASP或PHP做301转向: ASP: %@ Language=VBScript % % Response.Status=”301 Moved Permanently” Response.AddHeader “Location”, ” 你的域名” PHP: ?php Header( “HTTP/1.1 301 Moved Permanently” ); Header( “Location: 你的域名” ); ?
采纳哦