Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you do not know what is a favicon is, well here is a direct link to the Wikipedia on favicon.

Configure a

...

0 Byte favicon.ico

In some cases your website does not require a logo and you just want the error's to stop showing up.

...

At this point you should stop seeing the 404 error entries in both your main host and your virtual host, but the favicon logo (if you chose to use one) will not show up on the browsers yet.

Enable ico Files in Page
favicon is specified at the web page level.

To activate your favicon, you must modify the source of your web page. Add this line to the <head> section of your page:

Code Block
langhtml
<link rel="shortcut icon" href="/favicon.ico">

For example,

Code Block
langhtml
<html>
<head>
    <title>This is the title of my page!</title>
    <link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
    Hello world!
</body>
</html>