In my application I have an area call Mobile. In this area I have a folder call Assets where we place all our css, javascript and images.
Accessing the views works just fine. http://localhost/webapp/mobile/stuff
The problem is when I access my css, javascript and images.
I cannot do something like this in my view.
<img src="Assets/css/styles.css" />
The reason is because the real url is: http://localhost/webapp/areas/mobile/assets/css/styles.css
Is there a way to map http://locahost/webapp/areas/mobile to http://locahost/webapp/mobile for static files?
Thanks, Randall