Best way to redirect 3 sites to 1 new one.
-
Hi All
We currently have 3 old sites that have tones of content. Due to brand/business consolidation we have merge all 3 to produce 1 website. The new site contains all the old content from the old 3.
So, I know I need to 301 redirect all the old content from the previous sites to the equivelent content on the new sites but am confused how you do this with 3 domains?
One of the domains is being replaced with the new site.
So I have:
All the content for all the sites have been imported into a new site and any duplicate content issues havce been resolved.
Can anyone point me in the right direction?
Thanks
-
I understand, I didn't actually mean redirect content as such but I realise I was a little unclear in my questions.
So basically I should point all 3 domains to the new one then redirect-wise, is the below correct?
redirect 301 http://www.oldsite.com/some-category/article/ http://www.newsite.com/category/article
-
When you do a redirect, all you do is redirect requests for that page.
So when the search engine follows a link, it is redirected to another page, and it gives the link juice to that page. you do not redirect content or any thing else about the page but its incomming links, so if there is no links pointing to the site, there is nothing to redirect.
when you do a 301 redirect you are redirecting links, the page that link comes from and the link text should be relevant to the new page.
-
Also, any pointers on how to achieve this?
"Above this redirect i would redirect to deep pages that do not have the same path, by checking the existing path of the link. This way you dont have chain redirects"
-
Hi Thanks for the reply.
Ok, so use the redirect code you provided at the end of the htaccess. I'm not sure I follow what you mean about redirecting links not content, I'm not talking about external links purely just about any old content from the old domains that may show in serps and getting these redirected to their new versions on the new site.
A clearer example of what I have is:
Old domains each cover one brand
So the new site is structured like:
So how do I handle the redirects from old pages? Like this?
redirect 301 www.brand1.com/some-page www.newsite/brand1/some-page/
Then use your redirect code last? Also the site structure (as above) is totally different than before so would that effect your redirect code?
To make it trickier one of the sites is a hosted blog platform that I dont have ftp access to but I can repoint the domain. I could repoint this domain to new hosting with a page saying moved and have a .htaccess under that domain doing the redirects.
-
I would point all the domains at the new domain.
Then have a rule that states, if the host does not equal new domain then make sure it does. see code below. But put this last. as it is only good for links that have the same path as the old site, like the home page and any others you managed to keep the same path
Above this redirect i would redirect to deep pages that do not have the same path, by checking the existing path of the link. This way you dont have chain redirects
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.newdomain.com$
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]but having said this,
First i would not do this all at the same time, SE will discount your redirects if you redirect too many domains to the one domain. there is a matt cutts video about this. http://www.youtube.com/watch?v=a70ygsHgvMw
Also, you do not redirect content, you redirect links. the important thing is the page the link comes from and the link text, the page it did link to is irelevant, then decide on that where to send it. so if no links to the old page there is no link juice to redirect.
Do not send all to the home page, they will be discounted if you do
-
I should add that one of the sites is hosted with a blogging platform (blog harbour) thats about to shut down therefore I can't upload a htaccess with redirects in. So I was just going to point the domain at the new domain name and add redirects to a htaccess file on the new domains like:
On new domains .htaccess:
redirect 301 www.olddomain.co.uk/category/article.php www.newdomain.co.uk/category/article.php.
Is this the best way?
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Our clients Magento 2 site has lots of obsolete categories. Advice on SEO best practice for setting server level redirects so I can delete them?
Our client's Magento website has been running for at least a decade, so has a lot of old legacy categories for Brands they no longer carry. We're looking to trim down the amount of unnecessary URL Redirects in Magento, so my question is: Is there a way that is SEO efficient to setup permanent redirects at a server level (nginx) that Google will crawl to allow us at some point to delete the categories and Magento URL Redirects? If this is a good practice can you at some point then delete the server redirects as google has marked them as permanent?
Technical SEO | | Breemcc0 -
Building new site on new web host with concerns
Hello, I have a domain with GoDaddy and current site is hosted there as well. I want to leave my domain with GoDaddy and build a brand new site on HostGator. The current website was designed to get us started. Not any significant traffic, backlinks, or SEO. The domain is not really what I want. There are 80 pages including those that are no longer in service. The keywords are not as relevant today. Current site domain is whiterocktech.net The new site will be very much different with SEO leading the way. We have designed it yet have not opened an account yet with HostGator. In addition, we have found a shorter more appropriate domain name. Not ideal but easy to type in yet it has a dash. This site is wr-crm.com. Questions: Does it make sense to "cut bait" from the current site given the lack use? Does it make sense to build the site and still set redirects from the old domain pages to a new one? Given so little traffic, is there really an effect on SEO if we sunset the old domain? Could I strip out the old domain website and just post a message on one page to come to our new site until old domain expires? I appreciate any insights on helping me with this decision. Mike
Technical SEO | | mmcgibbony0 -
Moving to old site to new domain sub directory
Hi, we've moved our old site to a new domain but in a subdirectory (the shopping site has been consolidated into overarching company website's shopping section, thus the move to sub dir). Are 301 redirects from old URLs to new domain's subdirectory ex newsite.com/shopping/page-1/ sufficient for site migration? I wasn't able to use Google's site address change tool since we're moving to a subdirectory on the new domain. Thanks
Technical SEO | | SoulSurfer80 -
Best way to handle URLs of the to-be-translated pages on a multilingual site
Dear Moz community, I have a multilingual site and there are pages with content that is supposed to be translated but for now is English only. The structure of the site is such that different languages have their virtual subdirs: domain.com/en/page1.html for English, domain.com/fr/page1.html for French and so on. Obviously, if the page1.html is not translated, the URLs point to the same content and I get warnings about duplicate content. I see two ways to handle this situation: Break the naming scheme and link to original English pages, i.e. instead of domain.com/fr/index.html linking to domain.com/fr/page1.html link to domain.com/en/page.html Leave the naming scheme intact and set up a 301 redirect so that /fr/page1.html redirects to /en/page1.html Is there any difference for the two methods from the SEO standpoint? Thanks.
Technical SEO | | Lomar0 -
Merging two sites into a new one: best way?
Hi, I have one small blog on a specific niche and let's call it firstsite.com (.com extension) and it's hosted on my server. I am going to takeover a second blog on same niche but with lots more links, posts, authority and traffic. But it his on a .info domain and let's call it secondsite.info and for now it's on a different server. I have a third domain .com where I would like join both blogs. Domain is better and reflects niche better and let's call it thirdsite.com How should I proceed to have the best result? I was thinking of creating a new account at my server with domain thirdsite.com After that upload all content from secondsite.info and go to google webmaster to let they know that site now sits on a new domain. Also do a full 301 redirect. Should it be page by page or just one 301 redirect? And finally insert posts (they are not many) from firstsite.com on thirdsite.com and do specific redirects. Is this a good option? Or should I first move secondsite.info to my server and keep updating it and only a few weeks later make transition to thirdsite.com? I am worried that it could be too much changes at once.
Technical SEO | | delta440 -
Htaccess redirects how many can i have and does it slow site down
I have had to redesign my site this year www.in2town.co.uk because my hosting company made a huge mistake while trying to update the joomla on my site which resulted in me losing thousands of pages and links. What i would like to know is, i have put some of the old urls in my htaccess file but i would like to know how many old urls i can have in my htaccess file as i am unsure how to use it properly. my idea was, to have some of the lost url links to my site and put them in my htaccess file and have them pointing to similar pages. not sure if this is a good idea or not. i think i have lost a few hundred good links but i would like to know if these urls in the htaccess file would slow down my joomla site any advice would be great.
Technical SEO | | ClaireH-1848860 -
Redirect from old wordpress site to new php site? Best approach
Hi I have two websites one legacy site done in wordpress the other in php. However I would like to merge the two together and remove the wordpress site. However it has a good link profile and the pages rank well. What is the best approach to do a 301 redirect from the old site with all its pages pointing to the homepage of the new site? If so what's the best way to do this in wordpress? Many thanks
Technical SEO | | ocelot0 -
As an agency, what is the best way to handle being the webmaster and hosting provider for several sites (some of which are in the same industry and have natural links to each other)?
We are an agency that builds and hosts websites for several companies (some of which happen to be in the same industry - and therefore naturally link to each other - we do not dictate). In regards to handling their domain registrations, webmaster tools account, google analytics account, and servers, what is the best practice to avoid Google thinking that these companies are affilliated? Even though they aren't affiliated, we are afraid that us being the "webmaster" of these sites and having shared servers for them that we may be affecting them.
Technical SEO | | grayloon0