用一个虚拟主机空间,构建多个网站

来源:互联网 发布:淘宝eva手办店推荐 编辑:程序博客网 时间:2024/05/08 10:02

前提是你要有相关的域名,可以说,你有多少域名,就能够建立多少网站。

在网站的index.asp写入以下代码:

 host=lcase(request.servervariables("HTTP_HOST"))
         select case host
              case "www.flashbao.com"
                        response.Redirect("index1.html")
              case "flashbao.com"
                        response.Redirect("index1.html")
              case "skypeclub.net"
                        response.Redirect("down/")
              case "www.skypeclub.net"
                       response.Redirect("down/")
         end select

其中需要注意的是,flashbao.com和www.flashbao.com是不一样的