首页 > 代码库 > asp 域名跳转
asp 域名跳转
域名跳转 将xxx.cn定向到www.xxx.com
dim querys,UrlsUrls = "http://www.xxx.com"&Request.ServerVariables("PATH_INFO")querys = Request.ServerVariables("QUERY_STRING") If querys <>"" Then Urls=Urls&"?"& querys if Request.ServerVariables("HTTP_HOST")="xxx.cn" or Request.ServerVariables("HTTP_HOST")="www.xxx.cn" thenResponse.Status="301 Moved Permanently"Response.AddHeader "Location",UrlsResponse.Endend if
例子 http://www.xxx.com/info.asp?id=1
Request.ServerVariables("PATH_INFO") 获取的是/info.asp
Request.ServerVariables("QUERY_STRING") 获取的是id=1
Request.ServerVariables("HTTP_HOST") 获取的是 www.xxx.com
连起来就是完整的url地址。
ASP跳转主要用到了下面两个东东
Response.Status="301 Moved Permanently"Response.AddHeader "Location",Urls
Urls是跳转的地址,动态的变量
做下笔记,同时分享下。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。