Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的所有页面都有模板。在此模板中,我使用以下代码显示了一个 favicon:
<r:external uri="/images/favicon.ico"/>
在静态 html 中,它生成以下代码:
<link href="<somelink>.ico" rel="shortcut icon" />
在 Chrome favicon.ico 中,所有页面都正确显示,但在 Firefox 中,只有一个页面未显示。此页面与其他页面没有什么不同。
有谁知道如何解决这个问题?
定义<base>标签:
<base>
像这样:
<html> <title>THE TITLE</title> <base href="http://YOUR_URL.COM"/> ........ </html>