Skip to content

Instantly share code, notes, and snippets.

@gyndav
Created May 30, 2011 17:10
Show Gist options
  • Save gyndav/999163 to your computer and use it in GitHub Desktop.
Save gyndav/999163 to your computer and use it in GitHub Desktop.
Redirect www to non-www domain
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment