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:
- Main page, 'cars'
- sub-page, 'tires'
- sub-page, 'engines'
- sub pages, 'accessories'
- 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?