/ Published in: Other
Expand |
Embed | Plain Text
# strip www. from the domain RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Comments
Subscribe to comments
You need to login to post a comment.

RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]