vote up 1 vote down star

Couple of months ago, we revamped our web site. We adopted totally new site structure, specifically merged several pages into one. Everything looks charming.

However, there are lots of dead links which produce a large number of 404 errors.

So how can I do with it? If I leave it alone, could it bite back someday, say eating up my pr?

One basic option is using 301 redirect, however it is almost impossible considering the number of it.

So is there any workaround? Thanks for your considering!

flag

20% accept rate

3 Answers

vote up 1 vote down

I agree with the other posts - using mod_rewrite you can remap URLs and return 301s. Note - it's possible to call an external program or database with mod_rewrite - so there's a lot you can do there.

If your new and old site don't follow any remapable pattern, then I suggest you make your 404 page as useful as possible. Google has a widget which will suggest the page the user is probably looking for. This works well once Google has spidered your new site.

link|flag
+1 for the google widget - handy little thing! – Paul Nov 3 at 11:27
vote up 2 vote down

301 is an excellent idea. Consider you can take advantage of global configurations to map a group of pages. You don't necessary need to write one redirect for every 404.

For example, if you removed the http://example/foo folder, using Apache you can write the following configuration

 RedirectMatch 301 ^/foo/(.*)$ http://example.org/

to catch all 404 generated from the removed folder.

Also, consider to redirect selectively. You can use Google Webmaster Tools to check which 404 URI are receiving the highest number inbound links and create a redirect configuration only for those. Chances are the number of redirection rules you need to create will decrease drastically.

link|flag
vote up 1 vote down

301 is definitely the correct route to go down to preserve your page rank.

Alternatively, you could catch 404 errors and redirect either to a "This content has moved" type page, or your home page. If you do this I would still recommend cherry picking busy pages and important content and setting up 301s for these - then you can preserve PR on your most important content, and deal gracefully with the rest of the dead links...

link|flag
1  
The best answer to the question as asked because it doesn't make assumptions about the tools available... – Murph Nov 3 at 11:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.