I can't say anything for google, but I will say that you SHOULDN'T have both working.
Use a 301 to re-direct one to the other. I prefer no www's as they are depreciated.
throw this in an htacces file in root:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.com [NC]
RewriteRule (.*) http://domain.com/$1 [R=301,L]
you can swap it if you want all WWW's for some reason... waste of typing IMO.
|