My favicon icon is stuck as the wordpress logo

I see you have configured a favicon, but you have done this:

  <link rel="icon" type="image/x-icon" href="/htdocs/favicon.ico">

The htdocs directory should not be a part of the URL, so the correct path would be:

  <link rel="icon" type="image/x-icon" href="/favicon.ico">
8 Likes