如何在.NET MVC中不存在图像时防止未找到错误

时间:2012-11-01 17:13:47

标签: .net asp.net-mvc routing asp.net-mvc-routing

我有一个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忽略对任何文件的所有请求?

由于

0 个答案:

没有答案