IIS文件上传限制

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS文件上传限制相关的知识,希望对你有一定的参考价值。

HttpException (0x80004005): 超过了最大请求长度。

MaxRequestLength单位KB,最大值2147483647(int32)最大值

<httpRuntime maxRequestLength="2147483647" executionTimeout="2147483647" />

<compilation debug="false"/>

<system.webServer>

    <security>

      <requestFiltering>

        <requestLimits maxAllowedContentLength="4294967295" />

      </requestFiltering>

      </security>

</system.webServer>

HTTP Error 404.13 - Not Found

Web 服务器上的请求筛选被配置为拒绝该请求,因为内容长度超过配置的值。

确认 applicationhost.config 或 web.config 文件中的 configuration/system.webServer/security/requestFiltering/[email protected] 设置。

以上是关于IIS文件上传限制的主要内容,如果未能解决你的问题,请参考以下文章

问题vs IIS破除文件上传限制最全版

csharp 上传的文件限制(IIS Express)

IIS文件上传限制

IIS上传大文件

Windows服务器修改网站上传文件的大小限制

IIS文件上传时间大小限制,默认4M