Time to define the standard domain in your .htaccess, having the domain.com and
www.domain.com version spidered isn't really helpful. For getting rid of domain.com and redirecting all requests to
www.domain.com use:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com
RewriteRule ^(.*)$ http://www.domain.com/$1 [r=301,L]