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文件上传限制的主要内容,如果未能解决你的问题,请参考以下文章