익스플로러 주소창에 http://domain/ 까지만 보이게 하기
페이지 정보
작성자 서방님 댓글 0건 조회 324회 작성일 06-09-12 17:05본문
http://dr-no.co.kr/game/flash/ 로 URL 에 직접 입력 하였을 경우,
주소창에 http://dr-no.co.kr/ 로 줄여줍니다.
[전제]
1. 프레임구조 사이트
[방법]
1. 아래 JS 를 원하는 페이지에 삽입
2. /index.php 파일에 UrlString 쿠키에 값이 있으면 프레임 src에 대입
[설명]
간단하게 URL 규칙만 체크합니다.
1. http://dr-no.co.kr -> True
2. http://dr-no.co.kr/ -> True
3. http://dr-no.co.kr//game/flash -> False
4. http://dr-no.co.kr/a/game/flash -> False
Flase 면 UrlString = 현재URL로 쿠키를 구워주고 / 으로 보내버립니다.
<script language="JavaScript">
<!--
var URLString = top.location.href + "/";
var tURLString = URLString.split("/");
var check = tURLString.length > 2 ? (tURLString[3].length > 0 ? false:true) : false
if( !check )
{
document.cookie = "UrlString=" + top.window.location.href + "; path=/;";
top.window.location.href = "http://"+top.window.location.host;
}
//-->
</script>
댓글목록
등록된 댓글이 없습니다.