도메인에 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로 바뀝니다.
<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로 바뀝니다.
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 6개
http://happyjung.com/aaa=bbb --> http://www.happyjung.com/aaa=bbb 이동
추천 ~~~