Skip to content

Instantly share code, notes, and snippets.

@mjurincic
Forked from joshhartman/.htaccess
Created April 10, 2020 10:06
Show Gist options
  • Save mjurincic/6a6eda312c389547f185a8976acbcea5 to your computer and use it in GitHub Desktop.
Save mjurincic/6a6eda312c389547f185a8976acbcea5 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