Redirect based on referrer URL

后端 未结 3 1224
庸人自扰
庸人自扰 2020-12-10 14:04

In my site I have a password protected page containing some links to other sites also operated by myself that cannot be password protected. I would like to place a HTML code

3条回答
  •  感动是毒
    2020-12-10 14:54

    Try this

        function url(url){
          return url.match(/:\/\/(.[^/]+)/)[1];
        }
    
        function check()
        {
          var ref = document.referrer;
          if(url(ref) =='www.google.com')
          {
              // do something
          }
          else
          {
             // redirect
             window.location.href = 'http://yourDomain.com';
          }
       }
    

提交回复
热议问题