图标消失
为什么favicon消失
背景:
我的网站是根据mvc制作的 所以,我将有一个前端控制器和一个主布局 所有其他视图都将从主布局加载到 $content 变量中。 主布局包含带有链接“快捷方式图标”的标签。
当我点击子视图中的链接时,图标消失了。 firefox 会发生这种情况。
IE 还可以,但无论如何它都更持久,即使你想摆脱它。
所以,简而言之,- 也许对此有一个解释吗?
Why the favicon disappears
Background:
I have my site made according to mvc
So, I will have a frontcontroller and a main layout
All the other views will be loaded in the $content variable from the main layout.
The main layout holds the tags withe the link rel "shortcut favicon".
The favicon disappears when I klik on a link in a child view.
This happens with firefox.
IE is ok, but is more persistant anyway, even if you want to get rid of it.
So, in short, - is there an explanation for this, maybe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
确保您始终指向网络根目录。
Try
to make sure you are always pointing to the web root.
您的子视图中生成的所有 HTML 页面是否都包含适合您的网站图标的
标记?
链接标记的
href
是否引用绝对路径?您是否在您的图标存在之前访问了子视图的输出,并且您丢失的图标实际上已被缓存?
Do all the resulting HTML pages in your child view contain the proper
<link>
tag for your favicon?Does the link tag's
href
reference an absolute path?Could it be that you visited your child view's output before your favicon existed, and your missing favicon is actually being cached?