Hi, after getting a long way in development i have decided to structure my application rather than using a flat based file structure...
I want to have a system like:
Sections
- Contact Us
- Email page
But i then want to have my url as
www.mysite.com/Contact_Us.aspx
Having done this i have run into some issues in that i cannot reference my themes correctly...
When i view the source i get the path as it would be if i was viewing the page from the folder structure...
Does anyone know how i can get around this?
I tried including the following rewrite rule but it fails to help:
<rewrite url=".*/App_Themes/(.+)" to="~/App_Themes/$1" />
Thank you in advance for your help