*Writing this post, I may have come up with a solution myself. If I activate the domain alias, but create an .htaccess rewrite to send all domainb requests to domaina, Google should only see a single site. Would that work?
If I activate the domain alias, but create an .htaccess rewrite to send all domainb requests to domaina, Google should only see a single site. Would that work?wesg, that's exactly what I did over the weekend with a rewriteCond and rewrite rules. It seems to do the trick nicely.
this is what I ended up with:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain\.com [nc,or]
RewriteCond %{HTTP_HOST} ^www.olddomain\.com [nc]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]