IIS中请求URL过长出现被拦截
Posted 数据轨迹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS中请求URL过长出现被拦截相关的知识,希望对你有一定的参考价值。
IIS7及以上中URL长度过长的时候,会出现被拦截。需要两步完成:
一、第一步
<system.web>
<httpRuntime maxQueryStringLength="2097151"/>
</system.web>
二、第二步
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="40800" />
</requestFiltering>
</security>
</system.webServer>
上传文件大小限制
一、第一步
<system.web>
maxRequestLength="1048576" executionTimeout="600"
</system.web>
二、第二步
<system.webServer>
<security>
<requestLimits maxAllowedContentLength="1048576000"></requestLimits>
</security>
</system.webServer>
以上是关于IIS中请求URL过长出现被拦截的主要内容,如果未能解决你的问题,请参考以下文章