Created
October 24, 2015 15:43
-
-
Save anonymous/f54898889f7770da23fc to your computer and use it in GitHub Desktop.
SSL Proxy Redirect to HTTPS (compatible with Network Solutions web hosting)
This file contains 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
RewriteEngine on | |
RewriteCond %{HTTP:X-Forwarded-Proto} !https | |
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