我运行我的网络项目,但我在客户端收到此错误:
Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:32573/favicon.ico
我正在使用:
知道造成这个错误的原因以及如何解决它?
提前谢谢。
答案 0 :(得分:0)
也许mime类型,来自IIS使用mimeType image / x-icon
添加 .ico或者在网络配置中,如果您不想在默认网站上设置mime类型(现在使用:http://localhost:32573)
进入网络配置并设置:
<system.webServer>
<staticContent>
<mimeMap fileExtension=".ico" mimeType="image/x-icon" />
</staticContent>
</system.webServer>