Skip to content

Instantly share code, notes, and snippets.

@wingkwong
Created November 27, 2019 03:01
Show Gist options
  • Save wingkwong/cb9ec4ad9931ef4db264c6c3bd3cc103 to your computer and use it in GitHub Desktop.
Save wingkwong/cb9ec4ad9931ef4db264c6c3bd3cc103 to your computer and use it in GitHub Desktop.
Redirecting from non-www to www
RewriteEngine on
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment