码迷,mamicode.com
首页 > Web开发 > 详细

js实现域名判断后跳转到指定网址

时间:2014-12-08 22:44:18      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:http   io   sp   strong   on   bs   ef   tt   nbsp   

js实现域名判断后跳转到指定网址,也适用于同一虚拟空间放多个网站:

<script>
       try
           {
               if(self.location == "http://apple.ya37.com/")
               {
                   top.location.href = "http://ya37.com/apple/";
               }
               else if(self.location == "http://girl.ya37.com/")
               {
                   top.location.href = "http://ya37.com/girl/";
               }
               else if(self.location == "http://simple.ya37.com/")
               {
                   top.location.href = "http://ya37.com/simple/";
               }
               else {document.write ("错误的访问地址")}
           }
       catch(e){ }
   </script>

看明白了吧,如果访问者输入的域名是"http://apple.ya37.com/"的话,就访问"http://ya37.com/apple/"

js实现域名判断后跳转到指定网址

标签:http   io   sp   strong   on   bs   ef   tt   nbsp   

原文地址:http://www.cnblogs.com/tanlingdangan/p/4152083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!