apache:redirect-http-to-https

How to redirect HTTP traffic to HTTPS using an .htaccess file

The below code when added to an .htaccess file will automatically redirect any traffic destined for http: to https:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>

apache/redirect-http-to-https.txt · Last modified: by shaun.reitan

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki