Skip to content

Instantly share code, notes, and snippets.

Created October 24, 2015 15:43
Show Gist options
  • Save anonymous/f54898889f7770da23fc to your computer and use it in GitHub Desktop.
Save anonymous/f54898889f7770da23fc to your computer and use it in GitHub Desktop.
SSL Proxy Redirect to HTTPS (compatible with Network Solutions web hosting)
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