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로 바뀝니다.

관련자료

등록된 댓글이 없습니다.
Today's proverb
자기 자신을 알기 위해서는 두 가지 일이 필요하다. 하나는 스스로 자기를 돌이켜보는 것이요. 다른 하나는 남이 평한 것을 듣는 일이다. (함석헌의 《뜻으로 본 한국역사》중에서)