I noticed that ASP.NET 4 has a new feature called 'Routing' or something similar. It apparently allows me to use cleaner looking URLs, which purportedly is both for looks and improved SEO. In my case use only basic URLs with little to no GET queries (ie. index.aspx, login.aspx, manage.aspx etc.) Would the ASP.NET routing be of use to me? How would it actually improve my SEO? How is it enabled (ie. do I change login.aspx to /login, or something else?)
I tested a 'route' and noticed that I am just replicating a log of behaviors to drop ".aspx" off my URLs (ie. I change /Login.aspx to /Login). Is there a short-hand version of routing to just drop .aspx off all pages throughout the application?