Skip to content

Instantly share code, notes, and snippets.

@ethangardner
Last active March 11, 2016 19:45
Show Gist options
  • Save ethangardner/cf3331af0c41d44dee4e to your computer and use it in GitHub Desktop.
Save ethangardner/cf3331af0c41d44dee4e to your computer and use it in GitHub Desktop.
Redirect non-www version of a domain to www
# BEGIN Redirect
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
</IfModule>
# END Redirect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment