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