标签:
今天在请求静态的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>
ASP.NET MVC请求特殊静态文件返回404 Not Found
标签:
原文地址:http://www.cnblogs.com/milo-xie/p/4821410.html