How do I route to /Configuration/ URL in ASP.NET MVC3?

I suspect that you have a physical folder called Configuration under the root of your application. The ASP. NET MVC routing engine has preference for physical folders over routes.

One possible way is to set the RouteExistingFiles property to true after your route definition.

I suspect that you have a physical folder called Configuration under the root of your application. The ASP. NET MVC routing engine has preference for physical folders over routes.

One possible way is to set the RouteExistingFiles property to true after your route definition: routes. MapRoute( "Default", "Configuration", new { controller = "DeviceConfiguration", action = "Index" }); routes. RouteExistingFiles = true.

This was indeed the problem, I solved it by moving my Configuration folder into a folder with a different name. Thanks! – Corey Staten Aug 10 '11 at 18:49.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions