Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created January 2, 2017 17:04
Show Gist options
  • Save strangerstudios/3899491912d5e612e4d379806b07b63a to your computer and use it in GitHub Desktop.
Save strangerstudios/3899491912d5e612e4d379806b07b63a to your computer and use it in GitHub Desktop.
Forward HTTP requests to HTTPS in Apache htaccess
# Forward HTTP requests to HTTPS
# (!) Make sure to place this under your RewriteEngine On and Rewrite Base lines.
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment