IIS , asp.net MVC 404, ?
, , factory . DefaultController factory, , HttpException 404, IIS . , factory.
, Application_Start
ControllerBuilder.Current.SetControllerFactory(new TestControllerFactory());
MVC:
public class TestControllerFactory : DefaultControllerFactory
{
protected override IController GetControllerInstance(RequestContext requestContext, Type controllerType)
{
if (controllerType == null)
{
throw new System.Web.HttpException(404, "Oops not found!");
}
return base.GetControllerInstance(requestContext, controllerType);
}
}
http://localhost/MvcApplication1/unmapped , , HttpException 404 , ( HttpException , 404)
, IIS ( VS Dev Server), -.