Skip to content

Instantly share code, notes, and snippets.

@pbrocks
Forked from strangerstudios/http2https.htaccess
Created December 6, 2017 07:17
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 pbrocks/5e3f29e7f833ec1a82d6e759560e45d4 to your computer and use it in GitHub Desktop.
Save pbrocks/5e3f29e7f833ec1a82d6e759560e45d4 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