Created
January 2, 2017 17:04
-
-
Save strangerstudios/3899491912d5e612e4d379806b07b63a to your computer and use it in GitHub Desktop.
Forward HTTP requests to HTTPS in Apache htaccess
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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