How To Redirect to https in Apache Using mod_rewrite
erics, November 17th, 2017
1 2 3 |
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} |