Our ASP.NET 3.5 website running on IIS 6 has two teams that are adding content: a development team adding code and a business team adding simple web pages. For sanity and organization, we would like for the business team to add their web pages to a sub-folder in the project.
Root <-- development team pages go here
.. Content <-- business team pages go here
But ... we would like for users to be able to navigate to the business team content without having to append "Content" in their URLs.
Root
..Default.aspx <-- Available at www.oursite.com/default.aspx
..Content
...Popcorn.aspx <-- Available at www.oursite.com/popcorn.aspx
Short of making a config entry in an ISAPI rewrite tool for every one of these pages, is there a way we can accomplish this?
Edit: Apologies for the odd layout ... the markdown preview doesn't seem to match reality so I had to make do.