[CentOS 6.8] Apache 2.2.x 에서 http URL을 https 로 이동하기 (포워딩) > 기술자료 | 해피정닷컴

[CentOS 6.8] Apache 2.2.x 에서 http URL을 https 로 이동하기 (포워딩) > 기술자료

본문 바로가기

사이트 내 전체검색

[CentOS 6.8] Apache 2.2.x 에서 http URL을 https 로 이동하기 (포워딩) > 기술자료

Linux [CentOS 6.8] Apache 2.2.x 에서 http URL을 https 로 이동하기 (포워딩)

페이지 정보


본문

방법1. mod_rewrite

happyjung.com 으로 들어왔을때 mod_rewrite 가 모듈에 올라가 있고 HTTPS로 요청한것이 아니라면 강제로 redirect 시키는 방법입니다.
[R,L] 에서 R은 강제로 redirect 시킨다는 뜻 입니다. http status code에 의해 분기할 수 있습니다.
L은 마지막 RewriteRule 이라는 뜻 입니다. 이후의 RewriteRule은 모두 무시됩니다.
만약 해당 설정 아래에 또다른 RewriteRule이 필요하다면 L를 빼면 됩니다.

 # vi /etc/httpd/conf/httpd.conf
...
<VirtualHost *:80>
   DocumentRoot /home/happyjung/public_html
   ServerName happyjung.com
   ServerAlias www.happyjung.com
   <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteLog logs/rewrite_log
        RewriteCond %{HTTPS} off
        RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
   </IfModule>
</VirtualHost>



방법2. mod_redirect

happyjung.com 으로 들어왔을때 Location이 / (root) 일 경우
match 되는 모든것들을 $1 변수를 이용하여 redirect 시키는 방법 입니다.

# vi /etc/httpd/conf/httpd.conf
...
<VirtualHost *:80>
   DocumentRoot /home/happyjung/public_html
   ServerName happyjung.com
   ServerAlias www.happyjung.com
   <Location />
        RedirectMatch /(.*)$ https://www.happyjung.com/$1
   </Location>
</VirtualHost>



참고자료
http://taesachi.com/?p=6 
http://www.mimul.com/pebble/default/2010/07/19/1279542240000.html 

댓글목록

등록된 댓글이 없습니다.


Total 124건 2 페이지
  • RSS
기술자료 목록
104
Linux   15625  2018-01-09 17:33  
103
Linux   19676  2017-12-03 06:55 ~ 2017-12-07 07:03  
102
Linux   17610  2017-12-03 06:11  
101
Linux   29809  2017-11-23 16:32 ~ 2018-01-10 23:07  
100
Linux   12925  2017-11-21 02:59  
99
Linux   24220  2017-11-21 02:57 ~ 2017-11-21 03:00  
98
Linux   16352  2017-10-31 02:34  
97
Linux   13769  2017-10-30 23:45  
96
Linux   11593  2017-08-26 03:32 ~ 2017-10-30 23:05  
95
Linux   15694  2017-08-26 00:44 ~ 2017-08-26 00:00  
94
Linux   16631  2017-08-26 00:30 ~ 2017-08-26 00:00  
93
Linux   19318  2017-08-11 13:06  
92
Linux   12669  2017-08-10 12:52  
91
Linux   95447  2017-08-03 23:02  
90
Linux   37146  2017-07-19 00:08 ~ 2024-11-18 15:17  
열람
Linux   15505  2017-04-13 15:30 ~ 2021-02-26 16:48  
88
Linux   21645  2017-03-22 06:11  
87
Linux   12447  2017-03-21 03:36  
86
Linux   12412  2017-02-28 01:06  
85
Linux   26954  2017-02-24 22:50 ~ 2019-12-30 06:46  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.