首页 > 学院 > 开发设计 > 正文

ASP实现多域名同一空间的处理实例

2019-11-18 17:04:34
字体:
来源:转载
供稿:网友

以这两个域名为例:
http://www.VeVb.com/
http://code.VeVb.com/

  这两个域名都是绑在同一个空间上,哈,但会跳到不同的目录,不是在IIS设置上实现的,只是一小段asp代码,哈,。。。给出代码大家看看,虽然不是什么高深的东西,但挺实用的。

  Code: 以下是引用片段:
  <%
  '取得HTTP输入的值并付值到HTOST中
  host=lcase(request.servervariables("HTTP_HOST"))
  ‘开始条件跳转
  SELECT CASE host
  ' 如果HOST的值是code.VeVb.com/就选择事件case"code.VeVb.com/"的命令
  CASE "code.VeVb.com/"
  ' Below is the redirect command
  response.redirect "homepage/"
  CASE "www.VeVb.com"
  response.redirect "/"
  'We use CASE ELSE to fix any other requests
  CASE ELSE
  response.redirect "/"
  END SELECT
  %>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表