Return to Snippet

Revision: 34202
at December 10, 2010 22:00 by minipark


Updated Code
# Redirect without www prefix
RewriteCond %{HTTP_HOST} ^www\.example\.net$ [NC]
RewriteRule ^(.*)$ http://example.net/$1 [r=301,NC,L]

Revision: 34201
at October 19, 2010 07:54 by minipark


Initial Code
# Redirect without www prefix
RewriteCond %{HTTP_HOST} ^www.example.net$ [NC]
RewriteRule ^(.*)$ http://example.net/$1 [r=301,NC,L]

Initial URL


Initial Description


Initial Title
.htaccess redirect www subdomain to second level domain

Initial Tags
redirect, htaccess

Initial Language
Apache