请求筛选模块被配置为拒绝包含双重转义序列的请求

一些URL中可能会包含+号等符号,而后IIS7以上的版本会默认拒绝请求此URL,须要进行以下的修改.web

在web.config中添加一下节点:api

<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true"/>
</security>
</system.webServer>it

相关文章
相关标签/搜索