Skip to content

Instantly share code, notes, and snippets.

@syammohanmp
Created April 5, 2018 16:27
Show Gist options
  • Save syammohanmp/b7780f660e975480635758fd119d6941 to your computer and use it in GitHub Desktop.
Save syammohanmp/b7780f660e975480635758fd119d6941 to your computer and use it in GitHub Desktop.
HTTPS Redirection
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\.site\.com*
RewriteRule ^(.*)$ https://www.site.com/$1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment