I have a favicon in the head of all the pages on my site. However it is not appearing on any of the pages in the main directory of my site.
I have two versions of my site one for testing and one that is live for the public.
In my root directory, all of the files have the following two lines:
<base href='https://example.com/'>
<link rel="shortcut icon" type="image/ico" href="web/favicon.ico"/>
And in my beta directory:
<base href='https://example.com/beta/'>
<link rel="shortcut icon" type="image/ico" href="web/favicon.ico"/>
I have verified that the image exists in both of these locations:
https://example.com/web/favicon.ico
https://example.com/beta/web/favicon.ico
However it only works in my beta directory and I have no idea why. Any ideas or assistance with this would be greatly appreciated.