Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm (finally) converting my website from classic asp to asp.net MVC. There will be a lot of 404 errors from all the people linking into my website.

What would be the best way to handle this? (show 404 page, automatically redirect to new page, ...)

Also, how will google handle this change?

share|improve this question

1 Answer

up vote 3 down vote accepted

If you dont want to lose your current google rank the best choice would be to return 301 status codes and redirect the user to the new url, you can do it using custom routes in your mvc app or IIS url rewriting.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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