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过长出现被拦截的主要内容,如果未能解决你的问题,请参考以下文章

解决请求筛选模块被配置为拒绝包含的查询字符串过长的请求

解决请求筛选模块被配置为拒绝包含的查询字符串过长的请求

nginx拦截url关键字

url请求get方式字符过长

进行跨域的时候,axios使用(headers)请求头可能被拦截

Burp Suite如何拦截GET请求提交POET请求的参数