0

Good night, i have a page mounted on github pages: https://ludicultura.github.io/ludiweb/

If you open that link the favicon works perfectly, but i buy a domain on goDaddy so i can redirect that page, masking it with my domain: http://ludicultura.com/ and there the favicon it doesn't work.

(Both of them links are up, so you can check them.)

I tried the option of adding a "?" to the end of "href"

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

And algo changing my image to png:

      <link rel="shortcut icon" type="image/png" href="/favicon.png"/>

But nothing works, what is happening?

Source and records of the repository and all the changes: https://github.com/ludicultura/ludiweb

David Jacquel
  • 51,670
  • 6
  • 121
  • 147

1 Answers1

1

For ludicultura.github.io/ludiweb/, change your favicon url to <link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}/favicon.ico">.

But framing ludicultura.github.io/ludiweb/ in ludicultura.com is not a good practice.

You'd better setup your custom domain correctly after reading this documentation on github pages.

David Jacquel
  • 51,670
  • 6
  • 121
  • 147