在 Machine.config 中配置 ELMAH - elmah.axd 上的 404
我正在尝试让 elmah 在我的整个网站上运行。我首先使用程序集引用在本地主机网站 web.config 中配置它,因为我将 elmah 放入 gac 中,并确保一切正常,我收到了一封电子邮件并且可以访问 http://localhost/elmah.axd。
现在,我将配置文件的所有 elmah 部分复制到:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config
然后删除网站的 web.config 文件。现在,当我访问 localhost/elmah.axd 时,我收到 404,但我也通过邮件从 elmah 收到 404?
httphandler 有什么问题?或者我错过了什么?
I'm trying to get elmah up and running on my entire website. I first configured it in the localhost website web.config using assembly references, as I put elmah in the gac, and made sure it all worked fine, and I get both an email and can access http://localhost/elmah.axd.
Now, I copy all of the elmah sections of the config file to:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config
And then I remove the web.config file of the website. Now when I go to localhost/elmah.axd I get a 404, but I also get the 404 in from elmah by mail?
What's wrong with the httphandler? Or did I miss something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ELMAH HTTP 处理程序配置应位于
web.config
文件中。The ELMAH HTTP handler configuration should be in the
web.config
file.