gpt4 book ai didi

c# - 如何从 ELMAH 中排除 404

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:43 24 4
gpt4 key购买 nike

目前在 ELMAH 错误日志中,我们希望消除/移除 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>

关于c# - 如何从 ELMAH 中排除 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36222518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com