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>
'Interesting > TIPTECH' 카테고리의 다른 글
삼성 겔럭시 터치 스크린 오류 해결 방법 (0) | 2016.08.11 |
---|---|
크롬 개발자도구로 웹 개발 테스트 하는 방법 1 (0) | 2016.06.17 |
페이스북 웹페이지 캐시 갱신 방법 (0) | 2015.09.03 |
생생정보 쿠폰/이벤트 (0) | 2015.05.14 |
엑셀 중복값 제거 하기 (0) | 2015.05.12 |