Ignore folder in ASP .NET MVC
I have an existing ASP .NET MVC application and I would like to ignore a specific folder within it (where I intend to put PHP scripts). I have tried adding an ignore route as described here but it is not working because I am still getting standard ASP .NET configuration errors. For examples sake, imagine I have this folder structure: root+ | +--bin | +--test Based on my understanding, in my global.asax.cs file I think I should be putting this in the RegisterRoutes method: routes.IgnoreRoute("test/{*.pathInfo}"); What am I doing wrong? Thanks, Alan EDIT: Posted web.config <configuration>