Return to Snippet

Revision: 62288
at February 13, 2013 20:02 by apphp-snippets


Initial Code
<script type="text/javascript">
   var allowed_referrer = "http://www.yourdomain.com/referring_page_name.html"; 
   if(document.referrer.indexOf(allowed_referrer) == -1){
      alert("You can access this page only from " + allowed_referrer);
      window.location = allowed_referrer;
   }
</script>

Initial URL
http://www.apphp.com/index.php?snippet=javascript-specify-referring-page

Initial Description
This script informs your visitor that a given page may be reached only from the page that you specify. Paste this code before the ending <head> tag on the page:

Initial Title
Specify Referring Page in JavaScript

Initial Tags
javascript, page

Initial Language
JavaScript