Forum Moderators: phranque
Go from this,
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^.*$ [example.com...] [R=permanent,L]
to this,
RewriteCond %{HTTP_HOST} ^.*\.example\.com$ [NC]
RewriteRule ^.*$ [example.com...] [R=permanent,L]
Will it hurt, help, or do the same thing?