Mobile app version of vmapp.org
Login or Join
Chiappetta492

: Two domains pointing two the same content by mistake. Google search results not showing the right one on the first position By mistake, at this moment I have two domains pointing to the same

@Chiappetta492

Posted in: #Google #GoogleSearch

By mistake, at this moment I have two domains pointing to the same content.
todocamino.info www.mytravelbanners.com

The problem: when I search on Google "mytravelbanners" I get the URL todocamino.info at the first position.

How to make the Google search results show mytravelbanners.com? Of course mytravelbanners.com is also indexed on Google Search.

I know I should not point todocamino to the same content as my mytravelbanners.com but I made a mistake. Before fixing the mistake, I would like to know if it is possible to show on Google search results mytravelbanners.com at the first position instead of todocamino.info
Im not getting the same issue on other search engines like Yahoo: when I search "mytravelbanners", the first position if for mytravelbanners.com

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Chiappetta492

1 Comments

Sorted by latest first Latest Oldest Best

 

@BetL925

The best way to fix it is to 301 redirect the incorrect URLs from the error site to the correct site. You need to make a list of all the URLs on mytravelbanners.com and add them as redirects to the .htaccess file for todocomino.info:

redirect permanent /anuncios-gratis-categoria/empleos www.mytravelbanners.com/anuncios-gratis-categoria/empleos
redirect permanent /anuncio/oferta-de-prestamo-de-dinero-entre-particular-48h-rapido-y-fiable-emilio-pablo98-gmail-com www.mytravelbanners.com/anuncio/oferta-de-prestamo-de-dinero-entre-particular-48h-rapido-y-fiable-emilio-pablo98-gmail-com ...


This may be a very long list. If the directories don't also exist on the error site, you could simplify this by just redirecting the directories which will also redirect each of their pages individually.

redirect permanent /anuncios-gratis-categoria/ www.mytravelbanners.com/anuncios-gratis-categoria/ redirect permanent /anuncio/ www.mytravelbanners.com/anuncio/ ...


Then your list of redirects will be much smaller.

With these redirects in place you can safely put up the correct content for the error site.


Your users coming from Google search will be redirected to the correct place. The only pages for which it won't work will be ones where both sites have the same page URL, such as the home page.
Googlebot will crawl the error site, get the redirect and update the search index.


It may take Google several weeks to fix the search results. In the meantime it won't hurt the site or users because users will get properly redirected.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme