abstract
After creating a simple HTML template for testing purposes without the favicon.ico file, the error message "The resource could not be loaded: the server responded with the status 404 (not found)" appears in the console | " http : //127.0.0.1-00-007021/favicon.ico ".
I'm trying to figure out where this error comes from, and I thought if anyone had any ideas to point me in the right direction.
My HTML page looks like this:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Simple JavaScript Tester 01</title> </head> <body> <script src="script.js"></script> </body> </html>
When I launch this page in the Chrome browser and open the console, I see the error message "Failed to load the resource: the server responded with the status 404 (not found)" | " http : //127.0.0.1-00-007021/favicon.ico ". I am running this on a local IIS server. I see this error message every time I create a new page.
Is it possible that this error comes from another page on my IIS server that I don't know about?
source share