라이프로그


[Apache]http를 https로 rewrite IT

httpd.conf

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]



1 2 3 4 5 6 7 8 9 10 다음