How to resolve favicon.ico not found error on apache
apache, php
Solution
Favicon.ico is an icon file that is displayed next to the URL in the browser bar. (See the StackExchange icon next to the URL).
There is no way to stop browsers requesting it. You can either create a favicon, or create a zero byte file called favicon.ico and place in the web root.
Problem
I am getting following error while running index.php file on apache ``` File does not exist: /home/../../../../favicon.ico ``` What does this mean? What should I change to resolve it?