Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple 301 Redirects after restyling a website (SEO)

We have updated our site recently; the old one had around 300 pages... the new one about 80 ;)

This because in the old structure we had, for every argument, many pages. Instead, now we have just one page with a 'summary'.

For example, the old structure about the 'car' argument was:

  1. Main page, 'cars'
  2. sub-page, 'tires'
  3. sub-page, 'engines'
  4. sub pages, 'accessories'
  5. etc...

Now, we have just 1 page 'cars', with all inside.

Actually, I redirect all the sub-pages to the main one, with .htaccess 301 redirect:

Redirect 301 /cars-tires.php http://www.example.com/cars.php
Redirect 301 /cars-engines.php http://www.example.com/cars.php
Redirect 301 /cars-accessories.php http://www.example.com/cars.php

So we have many different (even if the main topic is the same) pages pointing on one page.

Do you think this is good for seo, or will be better redirect just the old main page and give a 404 not found to the old sub-pages?

like image 382
Strae Avatar asked Apr 08 '09 10:04

Strae


People also ask

Do 301 redirects affect SEO?

This means that 301 redirects do not harm SEO performance or reduce the “PageRank” metrics associate with a page URL – though they are not crucial to search rankings either. All 300-level server-side redirects pass PageRank to the destination page (including 301 redirects as well as 302s, and 307s).

Do multiple redirects hurt SEO?

If you don't have external links that point to HTTP uppercase URLs, there is no reason to worry about whether multiple redirects will hurt SEO because search engines will rarely encounter the redirect chains.

Do redirects affect SEO?

Redirects are not bad for SEO, but — as with so many things — only if you put them in place correctly. A bad implementation might cause all kinds of trouble, from loss of PageRank to loss of traffic. Redirecting pages is a must if you make any changes to your URLs.

When would it be necessary to 301 redirect every page on a site SEO?

A 301 is used when a page has permanently changed location, and a 302 should be used if you intend to move the page back under the original URL in the future. In general, you should expect to use 301 redirects on your website.


1 Answers

It's much better to have the multiple 301s. You don't want your customers to see a 404.

There's no SEO penalty (that I'm aware of) for having multiple pages 301 to the same page.

like image 186
Greg Avatar answered Sep 25 '22 23:09

Greg