I am currently working on a web app with a small web page on the root level and several (more complex) web pages in areas. All area-based web pages have static content that is independant of each other, so each of them has it's own content folder. Unfortunately the resulting url's for the static content contains the string "Areas", for example
http://myappurl/Areas/MyArea1/Images/myFile.png
Since Areas are a technical implementation detail and nothing that the user should know (or care about), they do not belong in the url. How can I fix that? I don't want to create another root-level directory for each area (would be confusing and error-prone), but I don't really understand how I could modify routing to allow this otherwise. Help would be appreciated :)