当前位置:Gxlcms > html代码 > 静态页如何做301重定向??_html/css_WEB-ITnose

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

时间:2021-07-01 10:21:17 帮助过:35人阅读

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");

少写了个引号

人气教程排行