HTTP 错误 404.17 - Not Found 请求的内容似乎是脚本,因而将无法由静态文件处理程序来处理

遇到这问题,又见鬼了~总结方法如下:

1:重新注册.net framework v4.0.30319

2:出现问题时Web.Config的配置
< system.webServer >
< modules runAllManagedModulesForAllRequests ="true" />
< handlers >
< add name ="urlre" path ="*" verb ="*" *****省略***** />
</ handlers >
</ system.webServer >

更改为

<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<handlers>
<add name="urlre" path="*.aspx" verb="*" *****省略***** />
</handlers>
</system.webServer>

你可能感兴趣的:(HTTP 错误 404.17 - Not Found 请求的内容似乎是脚本,因而将无法由静态文件处理程序来处理)