ASP.NET MVC请求特殊静态文件返回404 Not Found

今天在请求静态的json档案以及woff2档案,会返回404错误,需要在Web.Config里修改:

 

 1  <system.webServer>
 2     <modules>
 3       <remove name="FormsAuthentication" />
 4     </modules>
 5     <handlers>
 6       <add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
 7     </handlers>
 8     <staticContent>
 9       <mimeMap fileExtension=".json" mimeType="application/json; charset=UTF-8" />
10       <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
11     </staticContent>
12   </system.webServer>

 

posted @ 2015-09-19 14:00  lzone6  阅读(669)  评论(0编辑  收藏  举报