Skip to content

Instantly share code, notes, and snippets.

@betawax
Created June 4, 2012 07:44
Show Gist options
  • Save betawax/2867028 to your computer and use it in GitHub Desktop.
Save betawax/2867028 to your computer and use it in GitHub Desktop.
Redirect requests with or without www. via mod_rewrite
RewriteCond %{HTTP_HOST} ^www.foobar\.com$
RewriteRule ^(.*)$ http://foobar.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^foobar\.com$
RewriteRule ^(.*)$ http://www.foobar.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment