https://myhome.naver.com/ddini/kin/ref2.htm



<body>
<a href=ref2.htm>이동</a>

<script>
allow=new Array(); //허락할 주소를 담는 배열
allow[allow.length]='https://myhome.naver.com'; //허락할 주소
allow[allow.length]='https://www.myhome.naver.com';
flag=0; //플래그
document.body.onload=function(){ //페이지가 로딩되면,
  for(var i in allow){ //허락주소인지 확인
   if(String(document.referrer).indexOf(allow[i])!=-1){ //허락된 주소라면
    flag++; //플래그 증가
   }
  }
  if(flag<1){ //플래그가 세팅되지 않았다면,
   alert('정상적인 접근이 아닙니다'); //경고문 표시
   location.replace("about:blank") //페이지 교체
   return; //함수실행중단
  }
  document.write(document.referrer+"<br>"); //허락된 페이지일때 뿌려질 본문
  document.write(document.domain+"<br>");
}
</script>


* 오작교님에 의해서 게시물 이동되었습니다 (2005-11-25 11:56)