HTTP错误404.3 - 在DotNet中找不到

时间:2014-01-24 08:34:34

标签: asp.net

当我使用dotnet应用程序中的ajax请求json文件时出现此错误:

HTTP错误404.3 - 未找到

由于扩展程序配置,无法提供您请求的页面。如果页面是脚本,请添加处理程序。如果要下载文件,请添加MIME映射。

请分享解决方案

1 个答案:

答案 0 :(得分:0)

 Implement below code in `web.config` file. Use the file extension that you want to fetch
 For Example: here is .json file

 <system.webServer>

 <staticContent>
    <remove fileExtension=".json" />
    <mimeMap fileExtension=".json" mimeType="application/json" />
  </staticContent>

 </system.webServer>