사이트맵
로그인
    • 도메인 이름에 www 자동으로 붙이기 automatic adding www to without www domain

      날짜 : 2010. 09. 07  글쓴이 : Joosarang

      조회수 : 3272
      추천 : 0

      목록
      • <head>부분에 다음 스크립트를 넣으시면 됩니다.
        Put the following script into Head area in your html.

        <script  language="JavaScript" type="text/javascript">
        var host = location.host.toLowerCase();
        var currentAddress = location.href;location.href;
        if (host.indexOf("www") == -1)
        {
          currentAddress = currentAddress.replace("//","//www.");
          location.href = currentAddress;
        }
        </script>

    신고하기

    • 추천 목록

    • 댓글(0)

    • 글을 작성시 등록하신
      비밀번호를 입력해주세요.