报错信息如下:
HTTP 错误 404.11 – Not Found
请求筛选模块被配置为拒绝包含双重转义序列的请求。
以下是解决方法
方法1.
wwwroot下建立web.config 内容如下:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping=”True”/>
</security>
</system.webServer>
< /configuration>
如果已有web.config,只需在其中添加这一节就行了.