Mobile app version of vmapp.org
Login or Join
Goswami781

: Redirect old domain to new domain SEO friendly We are about the release a new version of a website for one of our clients. His current website is on www.domain.be, the new domain with a complete

@Goswami781

Posted in: #301Redirect #Seo

We are about the release a new version of a website for one of our clients.

His current website is on domain.be, the new domain with a complete different structure is located on newdomain.be
So now we need to redirect traffic for the old one to the new one.

Is it best practise to redirect everything to the home page on the new domain or do we need to redirect each page to the correct page on the new domain?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Goswami781

2 Comments

Sorted by latest first Latest Oldest Best

 

@Alves908

To answer your specific questions...


Is it best practise to redirect everything to the home page


No. This generally gives a bad user experience. The user expected to see content related to X, but instead are seeing your home page. Bounce rate will be high. Consequently Google will not see this as a good thing either and generally treats (mass) redirects to the home page as a soft-404.

A redirect is telling users and search engines that the content has moved and is now located "here". A redirect to the home page is not conveying that same message.


or do we need to redirect each page to the correct page on the new domain?


Yes. Specifically a 301 redirect to the new URL on the new domain. It's the only way to maintain as much of the search engine ranking as possible.

10% popularity Vote Up Vote Down


 

@Si4351233

You will want to implement the following in the old domain's .htaccess file:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.newdomain.be
RewriteRule (.*) www.newdomain.be/ [R=301,L]


And, since your file structure is changing on the new domain you will definitely want to permanently 301 redirect ALL of the old urls to the new corresponding url's. You will also want to do a change of address in Google Webmaster tools and submit your new sitemaps.

Here is a link to a page with more detailed information:
www.creare.co.uk/blog/seo-advice/how-to-301-to-a-new-domain
I hope this helps...

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme