用户在网站上下载一个RAR压缩包时,崩开这个错误。
解决方法一:打开网站的 web.config 文件,修改如下节点值
<configuration> <system.webServer> <security> <requestFiltering <span style="BACKGROUND-COLOR: #33ff33">allowDoubleEscaping="True"</span>/> </security> </system.webServer> </configuration>
解决方法二:文件窗口中 键入 %windir%\system32\inetsrv\config\applicationhost.config,打开系统配置文件
修改<requestFiltering> 节点如下<requestFiltering allowDoubleEscaping="true">
微软支持地址:http://support.microsoft.com/kb/927672/zh-cn
ASP.NET 请求筛选模块被配置为拒绝包含双重转义序列的请求。HTTP 错误 404.11 - Not Found
原文地址:http://blog.csdn.net/rosefly110/article/details/43758483