asp.net - Failed to load resource error on client -
i run web project error on client side:
failed load resource: server responded status of 404 (not found) http://localhost:32573/favicon.ico i using:
- visual studio2013
- angularjs
- jquery
- bootstarp
any idea cause error , how solve it?
thank in advance.
maybe mime type, iis add .ico mimetype image/x-icon
or in web config if not want set mime type on default website (this used now: http://localhost:32573)
go in web config , set this:
<system.webserver> <staticcontent> <mimemap fileextension=".ico" mimetype="image/x-icon" /> </staticcontent> </system.webserver>
Comments
Post a Comment