首页 > 代码库 > 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是跳转的地址,动态的变量

做下笔记,同时分享下。