Skip to content

Instantly share code, notes, and snippets.

@masugadesign
Created May 13, 2009 00:45
Show Gist options
  • Save masugadesign/110813 to your computer and use it in GitHub Desktop.
Save masugadesign/110813 to your computer and use it in GitHub Desktop.
htaccess rules to force or remove www
# Remove the www
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
# RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# Force the www
# RewriteCond %{HTTP_HOST} !^www\.
# RewriteRule ^(.*)$ http://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