If I have a folder full of static content, say "/Content1/CSS", but I wish for it to be served to the client as say "/Content2/CSS" is there a way I can do this programatically where route registration typically occurs in an ASP.NET MVC application?
I understand that I can use MapRoute to map URLs to areas, controllers, and actions, and I understand I can use MapPageRoute to map URLs to individual static files. But I'm looking for a way to map a whole folder at once, without having to remap each static file so that I can for example serve all the static content under the physical path from the new virtual path.