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

WBOY
發布: 2016-06-24 12:22:36
原創
1091 人瀏覽過

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");
登入後複製

少写了个引号

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!