Skip to content

Instantly share code, notes, and snippets.

@fearlex
Created October 14, 2016 16:45
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 fearlex/471a036e7f1b6541047a4eeab63f6350 to your computer and use it in GitHub Desktop.
Save fearlex/471a036e7f1b6541047a4eeab63f6350 to your computer and use it in GitHub Desktop.
Forcing HTTPS Everywhere
# Force HTTPS
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment