3

我正在开发一个 Web API 应用程序。我遵循了 Elmah 的设置。但是,当我想通过浏览到本地计算机上的 url 来访问日志文件时,出现以下错误:

<Error>
<Message>
No HTTP resource was found that matches the request URI 'http://api.smsgh.local/elmah.axd'.
</Message>
<MessageDetail>
No type was found that matches the controller named 'elmah.axd'.
</MessageDetail>
</Error>

请帮我解决这个问题。

非常感谢

4

1 回答 1

1

您需要告诉路由配置忽略 *.axd:

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

于 2013-12-09T18:56:03.680 回答