在 Apache 上运行 ASP.net MVC 时无法访问 elmah.axd
我正在使用 MVC2、mono 2.10.5、mod-mono-server4。
ELMAH 按照此处,但我正在使用 XML 文件记录器。
当尝试在本地访问 /elmah.axd 时,我在错误日志中收到以下消息(表明 ELMAH 的日志记录功能正在运行):
路径“/elmah.axd”的控制器未找到或未实现 IController。
Global.asax 的 RegisterRoutes 方法中仍然存在以下内容:
routes.IgnoreRoute ("{resource}.axd/{*pathInfo}");
似乎添加 ELMAH 的处理程序不适用于 apache - 它正在使用 cassini 在 Windows 7 桌面上工作,尚未尝试使用 IIS。
如果需要,我可以发布更多详细信息。
I'm using MVC2, mono 2.10.5, mod-mono-server4.
ELMAH is configured as per here, but I am using the XML file logger.
When trying to access /elmah.axd locally I get the following message in error log (indicating that the logging capabilities for ELMAH are working):
The controller for path '/elmah.axd' was not found or does not implement IController.
The following is still present in Global.asax's RegisterRoutes method as well:
routes.IgnoreRoute ("{resource}.axd/{*pathInfo}");
It seems like adding the handlers for ELMAH is not working with apache - it is working on a windows 7 desktop with cassini, haven't tried with IIS.
I can post more details if needed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能不是最好的答案,但我遵循了指示 此处以更 MVC 友好的方式显示 ELMAH 信息(这也使得允许远程访问变得更容易)。我现在遇到了另一个特定于单一的错误,但我会将其作为一个新问题发布。
This may not be the best answer, but I've followed the directions here to display ELMAH information in a more MVC-friendly way (this makes it easier to allow remote access as well). I'm running into another mono-specific error now, but I will post that as a new question.