Mobile app version of vmapp.org
Login or Join
Shakeerah822

: When aquiring a company and website, how should their website be redirected? A few months ago the company that I work for acquired another company along with their website. Recently we took

@Shakeerah822

Posted in: #Redirects #Seo

A few months ago the company that I work for acquired another company along with their website. Recently we took their site down and simply redirected the url of the acquired site via DNS to ours.

Is this the best way to handle the redirects or should we have redirected old pages to the relevant new pages on our website? We adjusted the DNS about a week ago and Google seems to be doing a fairly decent job of figuring out which pages to take the user to. For example when I google one of their products the new page on our site comes up in the results.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Shakeerah822

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sherry384

Using DNS is not a redirect. You simply pointed another domain name to the same server. Nothing more. There is serious danger in this in that you will/can end up with duplicate content that will harm SERP performance severely.

TO avoid this, traditionally, you would want to have both domains configured on a web server (it does not have to be the same server) and do a 301 redirect from the old site to the new site. Often this is done with a blanket redirect from the old companies site to the new site and then redirects for particular pages one at a time on the new site to match the URI from the old site to point to the appropriate page on the new site. If you do not have a matching page from the old site to the new site, it is okay to let it return a 404 Not Found error though if you can, a 410 Gone error is better but may be more work that you want to do. This way, you avoid the duplicate content issue.

I would suggest doing this quickly since you have already allowed the search engines spider both sites. You will want to make the changes quickly to avoid as much loss of SERP performance as possible. This can be done with an audit of both sites and not worrying about pages that do not matter. Just focus on the ones that do matter.

[Update]

Here is an example of a blanket redirect:

RewriteCond %{HTTP_HOST} ^oldsite.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldsite.com$ [NC]
RewriteRule ^(.*)$ www.newsite.com/ [R=301,L]


I would be putting this on the old site to redirect the entire thing over to the new site.

Here is an example of a specific page redirect:

Redirect permanent /about/aboutus.html www.newsite.com/aboutus/

I would be putting this on the new site to redirect specific pages one at a time. Of course, you can redirect entire directories or do not need a redirect of the URI (path/pages) are identical.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme