gpt4 book ai didi

c# - HTTP 错误 404.13 - asp.net core 2.0

转载 作者:太空狗 更新时间:2023-10-29 17:29:11 26 4
gpt4 key购买 nike

HTTP Error 404.13 - Not Found The request filtering module is configured to deny a request that exceeds the request content length.

Verify the configuration/system.webServer/security/requestFiltering/requestLimits@maxAllowedContentLength setting in the applicationhost.config or web.config file.

我不知道我在哪里可以配置它,在 asp.net core 2 中有更改使用 appsettings.json。

甚至已经尝试这样做,但它不起作用。

services.Configure<FormOptions>(options =>
{
options.MultipartBodyLengthLimit = 300_000_000;
});

最佳答案

如果您使用 IIS,您需要在您的 asp.net core 2.0 应用程序中添加 web.config。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<!-- This will handle requests up to 700MB (CD700) -->
<requestLimits maxAllowedContentLength="737280000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>

如果您没有使用 IIS,您可以在 Controller 中使用 [RequestSizeLimit(long.MaxValue)][DisableRequestSizeLimit] 属性。

此外,您还可以在 Program.cs 中添加一个全局设置:

.UseKestrel(o => { o.Limits.MaxRequestBodySize = null; })

有关更多信息,请参阅此 https://github.com/aspnet/Announcements/issues/267

关于c# - HTTP 错误 404.13 - asp.net core 2.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46510836/

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