보안서버로 redirection 설정 하기

by ADMIN posted Dec 14, 2008
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
1) 원본 소스에서 http를 https 로 모두 변경

vi index.html

:%s/http/https/g

2) apache redirection 설정 (httpd.conf)

<VirtualHost koreasaint.com:80>
    ServerAdmin saint@koreasaint.com
    ServerName koreasaint.com
    ServerAlias www.koreasaint.com
    DocumentRoot /home
    CustomLog logs/koreasaint.com-access_log combined
    Redirect / https://koreasaint.com
</VirtualHost>


3) html 코드를 이용한 방법 ( 가장간단함..ㅋ index.html 에 한줄 추가 )

index.html 에 다음 한줄만 추가하믄 된당.

<meta http-equiv='refresh' content='0; url=https://koreasaint.com/index.html' target='_top'>


4) Java Script를 이용한 redirection

index 페이지에 다음 script 추가

<script>
var url = https://www.koreasaint.com;
window.location.replace(url);
</script>