IIS报错,默认限制30M HTTP 错误 404.13-Not Found 请求筛选模块被配置为拒绝超过请求内容长度的请求

原因是因为   IIS默认限制30M

解决方案:

  1.需要在Asp.net webapi项目中添加web.config

  2.需要在web.config添加如下代码, 发布即可

    <system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="2147483648" />
            </requestFiltering>
        </security>
    </system.webServer>
    <system.web>
        <httpRuntime delayNotificationTimeout="3600" executionTimeout="3600" shutdownTimeout="3600" />
    </system.web>

   参考:https://blog.csdn.net/weixin_48430685/article/details/126890335

posted @ 2024-07-29 16:40  ShawBlack  阅读(17)  评论(0编辑  收藏  举报