관리자 모드 주소 변경 문의
관리자모드에서 게시판 가기로 넘어 가면 주소에 www.이 붙지 않은채 넘어 가는데요.
반드시 www.가 붙어야 하거든요.
이부분은 어디서 수정을 해야 하나요.
ex)현재 : http://abc.com/~
변경 : http://www.abc.com/~
반드시 www.가 붙어야 하거든요.
이부분은 어디서 수정을 해야 하나요.
ex)현재 : http://abc.com/~
변경 : http://www.abc.com/~
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 1개
<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 를 꼭 붙이게 됩니다.