-
-
Save joshhartman/2c5ce661ff38b32070e5 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
I tried the .htaccess route and was unsuccessful. I was able to get it working with a plugin though:
//Begin Really Simple SSL Server variable fix
$_SERVER["HTTPS"] = "on";
//END Really Simple SSL