http와 https에 따라 동작하는 처리를 해줘야 할때가 있다.


일단 이미지 경우는 다음과 같이 처리

<img src="//sub.l2j.co.kr/image/ssl.jpg" />



프로토콜을 확인후 리로딩

<script type="text/javascript">

if (window.location.protocol != "https:")

    //window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);

    location.href = location.href.replace(/^http:/, 'https:')

</script>

+ Recent posts