4 07 2014
iis6 에서 SSL적용시 http 접속을 https 로 리다이렉트 설정하기
1.제어판 > 관리도구 > 인터넷 정보 서비스(iis)관리 > 해당 웹사이트 우클릭 메뉴 > 속성
2.디렉터리 보안 탭 > 보안 통신 섹션 > 편집버튼 > 보안 채널 필요(SSL) 체크, 128비트 암호화 체크
3. HttpRedirect.htm 파일을 만들어 C:\InetPub 에 저장
<!– beginning of HttpRedirect.htm file –>
<script type=”text/javascript”>
function redirectToHttps()
{
var httpURL = window.location.hostname + window.location.pathname;
var httpsURL = “https://” + httpURL ;
window.location = httpsURL ;
}
redirectToHttps();
</script>
<!– end of HttpRedirect.htm file –>
4. 사용자 적용 오류 403.4 에 해당하는 파일경로를 C:\InetPub\HttpRedirec.htm으로 지정
5. 테스트
jsp에서 include 파일이 컴파일 적용이 안될때 touch 명령어 Apache Httpd 2.2.x + JBoss EAP 6.x + Tomcat Connector 1.2.x Session Clustering