Html & Script

도메인에 www자동으로 추가하기

컨텐츠 정보

본문

<head>와 </head>사이에 자바스트립트를 넣습니다 
  
<script language="Javascript" type="text/javascript"> 
var host = location.host.toLowerCase(); 
var currentAddress = location.href; 
if (host.indexOf("www")== -1) 

currentAddress = currentAddress.replace("//","//www."); 
location.href = currentAddress; 

</script> 
 도메인을 domain.co.kr만 쳐도 자동으로 www.domain.co.kr로 바뀝니다.

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
고이다 못해 흘러내리는 침을 삼길 수만 있다면 세상에서 가장 행복한 사람이다. (장 도미니크 보비, 사고로 왼쪽 눈꺼풀만 움직이게 된 저널리스트)