Skip to content

Instantly share code, notes, and snippets.

@LucaRosaldi
Created September 17, 2019 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucaRosaldi/c6f409f80c3390df078bd6a221dd1803 to your computer and use it in GitHub Desktop.
Save LucaRosaldi/c6f409f80c3390df078bd6a221dd1803 to your computer and use it in GitHub Desktop.
APACHE: Redirect to HTTPS
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment