[아파치] apache Rewriter http로 접속시 https로 리다이렉트하기
- IT/Apache
- 2021. 7. 21.
반응형
반응형
모든 http로 접속에 대해 https로 리다이렉트하기
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R,L]
/test 들어오는 요청에 대해 https로 리다이렉트하기
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^/test(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
Test Site
반응형
'IT > Apache' 카테고리의 다른 글
CORS이란? / 설정 확인 / 예제 정리 (0) | 2023.02.05 |
---|---|
아파치(httpd) ddos mod_evasive 모듈 설치 및 테스트 (0) | 2023.01.13 |
[WEB] Nginx 설치하기(on Centos7) (0) | 2020.12.18 |
[Lighttpd] SSL 인증서 적용 예시 (0) | 2020.12.11 |
[Apache] MPM - prefork 프로세스 개수 설정 (0) | 2020.10.30 |