Skip to content

Instantly share code, notes, and snippets.

@Lejdborg
Created May 17, 2011 12:43
Show Gist options
  • Save Lejdborg/976399 to your computer and use it in GitHub Desktop.
Save Lejdborg/976399 to your computer and use it in GitHub Desktop.
Rewrite www URL to non-www independent of the domain name (Apache)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule (.*) http://%{SERVER_NAME}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment