I have a Magento store and I have been trying to figure out why I've lost most of my traffic in the past few months. I recently discovered that all categories not preceded by www were being redirected to the home page, overruling other redirects.
On my .htacces, I have made the change from:
RewriteCond %{HTTP_HOST} ^.domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
to
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
I am not an expert in this area and wanted to make sure this change won't screw something else up.
Also could this be a reason why I lost all my traffic? And would changing this help me get my traffic back?
Thanks for any suggestions!