Skip to content

Instantly share code, notes, and snippets.

@kwd
Forked from jnaskali/gist:2000188
Created July 20, 2012 08:21
Show Gist options
  • Save kwd/3149556 to your computer and use it in GitHub Desktop.
Save kwd/3149556 to your computer and use it in GitHub Desktop.
htaccess: Generic canonization (both no-www2www and www2no-www)
Non-www to www
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
www to non-www
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^/(.*)$ http://%1/$1 [R=301,L]
Bonus: Remove trailing slash from address line
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment