Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xeestudio/77a62d67f38f89c4d37b65aebe07a444 to your computer and use it in GitHub Desktop.
Save xeestudio/77a62d67f38f89c4d37b65aebe07a444 to your computer and use it in GitHub Desktop.
.htaccess
# HTTP to HTTPS redirect
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
#END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment