We've got a brochure-style website with links at the top such as "Home", "About", "Contact", all that stuff... typical boilerplate site. My boss just asked if it would be possible to redirect all traffic so that if (for example) somebody goes to www.mywebsite.com/contact it would redirect to www.mywebsite.com/contact.aspx instead of generating a 404 page.
My gut thought was to create a folder with a single webpage, whose sole purpose is to response.redirect to the appropriate aspx page (e.g. contact/default.aspx routes to contact.aspx, etc). However that would work in the short-term, but it's neither an elegant nor a long-lasting solution.
Is there a simple way to handle this in a webforms app?