관리자 모드 주소 변경 문의 정보
관리자 모드 주소 변경 문의
본문
관리자모드에서 게시판 가기로 넘어 가면 주소에 www.이 붙지 않은채 넘어 가는데요.
반드시 www.가 붙어야 하거든요.
이부분은 어디서 수정을 해야 하나요.
ex)현재 : http://abc.com/~
변경 : http://www.abc.com/~
반드시 www.가 붙어야 하거든요.
이부분은 어디서 수정을 해야 하나요.
ex)현재 : http://abc.com/~
변경 : http://www.abc.com/~
댓글 전체
관리자 페이지에, (혹은 head.sub.php에)
<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>
를 넣게 되면, www 를 꼭 붙이게 됩니다.
<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>
를 넣게 되면, www 를 꼭 붙이게 됩니다.