[아파치] apache Rewriter http로 접속시 https로 리다이렉트하기

 

모든 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

https://htaccess.madewithlove.be/

댓글

Designed by JB FACTORY

loading