Skip to content

Instantly share code, notes, and snippets.

@jcamachott
Created May 8, 2018 23:35
Show Gist options
  • Save jcamachott/a7cdb1590ad1b5802292d2eeadf575da to your computer and use it in GitHub Desktop.
Save jcamachott/a7cdb1590ad1b5802292d2eeadf575da to your computer and use it in GitHub Desktop.
RewriteCond %{HTTP_HOST} ^(www\.)(.*) [NC]
RewriteRule (.*) https://%2%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^(www\.)(.*) [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment