一、问题
①ASP.NET项目,开发工具Visual Studio
②在IIS上发布之后,网页控制台报错,某某文件找不到,但是在服务器文件夹中看明明有那个文件
二、解决方法
①》》打开IIS,点击你的网站,在右边窗口搜索找到MIME类型
》》右击上方,新建MIME类型
》》如,字体woff ----> 文件扩展名: .woff ------> MIME类型: font/opentype
②在ASP项目的Web.config文件中
》》在</system.webServer>标签前添加 <staticContent> <mimeMap fileExtension=".woff" mimeType="font/opentype" /> </staticContent>