asp.net mvc route clashing with physical path in IIS7
- by Andrew Bullock
I'm messing about with controller organisation and I've hit a problem.
If I have the following physical structure
/Home/HomeController.cs
/Home/Index.aspx
/Home/About.aspx
and I request the URI:
/Home/Index
I get a 403 Directory Listing Denied :(
(im using a custom IControllerFactory and IViewEngine to look in this non-default path)
Why is…