Hi all, We have recently migrated one of our legacy websites (classic ASP) to ASP.Net 4.0. I have already created a RegisterRoutes() in Global.asax (as per http://weblogs.asp.net/scottgu/archive/2010/01/05/asp-net-4-seo-improvem ents-vs-2010-and-net-4-0-series.aspx). I am concerned about SEO rankings and link breakages with external sites linking to old site.
Ideally, I will like to: - Load all the routes from an XML file within RegisterRoutes() --> As there are 100's of pages with no naming convention followed. We have already created mappings within an excel spread sheet which can easily be exported to XML. - Action Permanent redirects from within RegisterRoutes() --> to avoid having landing page(s) performing Redirects like Response.RedirectPermanent() and Response.RedirectToRoutePermanent. Has anyone run into a similar situation? Is there a better way of handling this situation? Your help is much appreciated. Kind regards, Hemal Modi
