如何从 ELMAH 中排除 404
How to exclude 404 from ELMAH
目前在 ELMAH 错误日志中,我们想要 eliminate/remove 404 错误,因为这是无用的并且会占用我们的数据库存储空间。
知道如何排除 404,尤其是通过 web.config 吗?
您可以通过在您网站的网络配置文件中设置以下内容轻松跳过 404 错误:
<elmah>
<security allowRemoteAccess="yes" />
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="Elmah-ErrorLog" applicationName="YourAPPName" />
<errorFilter>
<test>
<or>
<regex binding="Exception.Message" pattern="Server cannot modify cookies after HTTP headers have been sent\." />
<equal binding="HttpStatusCode" value="404" type="Int32" />
</or>
</test>
</errorFilter>
</elmah>
目前在 ELMAH 错误日志中,我们想要 eliminate/remove 404 错误,因为这是无用的并且会占用我们的数据库存储空间。
知道如何排除 404,尤其是通过 web.config 吗?
您可以通过在您网站的网络配置文件中设置以下内容轻松跳过 404 错误:
<elmah>
<security allowRemoteAccess="yes" />
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="Elmah-ErrorLog" applicationName="YourAPPName" />
<errorFilter>
<test>
<or>
<regex binding="Exception.Message" pattern="Server cannot modify cookies after HTTP headers have been sent\." />
<equal binding="HttpStatusCode" value="404" type="Int32" />
</or>
</test>
</errorFilter>
</elmah>