구름과 바람 그리고 나그네 :: [javascript] http를 https로 바꾸는 간단 팁

http로 들어왔을때 https로 이동시키는 간단팁

 

 

 

ssl을 적용하면 https://도메인 으로 되는데...

기존의 htto://도메인으로 들어 왔을때도 간단하게 https://도메인으로 이동하게 해주는 스크립트

 

검색하면 많이 나와요~ㅎㅎ

 

<script>

if(window.location.protocol == "http:"){

window.location.protocol = "https:";

}

</script>

 

 

만약 반대 상황이라면...?

<script>

if(window.location.protocol == "https"){

window.location.protocol = "http:";

}

</script>

 

 

Posted by pressrain
,