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
나는 항상 젊은 사람들의 실패를 흥미로써 바라본다. 젊은 시절의 실패는 곧 성공의 토대가 된다. 실패를 하고 물러섰던가? 다시 일어섰던가? 젊은 사람 앞에는 이 두가지 길이 있는데 이 순간에 성공은 결정되는 것이다. (몰트케)