您好我正在尝试使用 Sitecore 设置 ELMAH,我已阅读此http://newguid.net/sitecore/2011/using-elmah-for-error-logging-within-sitecore/#t-recent 它的解决方案工作正常从我的角度来看有一些错误。1. ELMAH 在所有情况下都跳过存储 404 以存储在日志中 + 2. 如果 URL 包含“.”,Sitecore 不处理 404 错误 字符。例如http://mysite/wrongurl将我重定向到 404.html 但http://mysite/wrongurl.dfgd向我显示应用程序中的服务器错误(IIS 7.5)(不是我的 404.html)这是我刚刚发布的设置ELMAH 和处理错误
<configSections>
<sectionGroup name="elmah">
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/>
</sectionGroup>
</configSections>
<elmah>
<!-- NetKeyElmah inside of App_Config\ConnectionStrings.config -->
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="ElmahData" />
</elmah>
<sitecore>
<settings>
<setting name="ItemNotFoundUrl" value="/404.html" />
<setting name="LayoutNotFoundUrl" value="/404.html" />
<setting name="LinkItemNotFoundUrl" value="/sitecore/service/notfound.aspx" />
<setting name="IgnoreUrlPrefixes" value="/sitecore/admin/elmah.axd|/sitecore/default.aspx" />
</settings>
</sitecore>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
</modules>
<handlers>
<add name="Elmah" path="/sitecore/admin/elmah.axd" verb="POST,GET,HEAD" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
</handlers>
</system.webServer>
<system.web>
<customErrors mode="On" defaultRedirect="/errorpage.html" >
<error statusCode="404" redirect="/404.html" />
<error statusCode="500" redirect="/500.html" />
</customErrors>
</system.web>
如何设置以正确的方式完成我的设置。