欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

静态页如何做301重定向??_html/css_WEB-ITnose

程序员文章站 2022-05-13 14:19:47
...
XXX.com 定向到 www.XXX.com
不使用iis

回复讨论(解决方案)

this.location = "http://www.baidu.com";

this.location = "http://www.baidu.com";
用js嘛?详细点


this.location = "http://www.baidu.com";
用js嘛?详细点
是用JS,就简单地这样一句话
这种方式貌似只能302而不是301
可以考虑结合后台程序使用



this.location = "http://www.baidu.com";
用js嘛?详细点
是用JS,就简单地这样一句话
这种方式貌似只能302而不是301
可以考虑结合后台程序使用
我使用.net 做的 程序怎么弄啊。




this.location = "http://www.baidu.com";
用js嘛?详细点
是用JS,就简单地这样一句话
这种方式貌似只能302而不是301
可以考虑结合后台程序使用
我使用.net 做的 程序怎么弄啊。

Response.Status="301 Moved Permanently" Response.StatusCode = 301;Response.Headers.Add("Location","http://www.baidu.com");

Response.Status = "301 Moved Permanently";Response.StatusCode = 301;Response.Headers.Add("Location","http://www.baidu.com");

少写了个引号