Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anjan011/8f7440922ded8621353d9327d2fdffee to your computer and use it in GitHub Desktop.
Save anjan011/8f7440922ded8621353d9327d2fdffee to your computer and use it in GitHub Desktop.
htaccess - redirect to https and www domain
RewriteCond %{HTTPS} off
# First rewrite to HTTPS:
# Don't put www. here. If it is already there it will be included, if not
# the subsequent rule will catch it.
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Now, rewrite any request to the wrong domain to use www.
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule .* https://www.%{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