我有一个MVC应用程序,我的错误处理在web.config中设置如下:
<customErrors mode="On" defaultRedirect="~/Error/" redirectMode="ResponseRedirect">
<error statusCode="404" redirect="~/Error/NotFound/" />
</customErrors>
每次请求非现有图像时,我的错误控制器上的NotFound操作都会被命中,我收到错误The controller for path '/img/home/myimg.jpg' was not found or does not implement IController.
。
我已将RouteTable.Routes.IgnoreRoute("img/");
添加到Global.asax
,但无效。
如何让MVC忽略对任何文件的所有请求?
由于