如何以编程方式生成空白图标?
我的网站上没有 favicon,因此有大量失败的日志条目,我决定重写 favicon.ico 获取请求到一个页面,该页面将生成空白文件并将其返回到浏览器?
你觉得怎么样,可能吗? 你能帮我一下怎么做吗?
I have no favicon on my web site so there are numerous of failed log entry and I decided to rewrite favicon.ico get request to a page that will generate blank file and return it to a browser?
How do you think, is it possible? Could you please help me a bit how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您不想创建物理文件,我建议
在头部
添加Source http://davidwalsh。名称/空白图标
If you don't want to create a physical file, I would suggest adding
in the head section
Source http://davidwalsh.name/blank-favicon
dummyimage.com
或
ipsumimage.appspot.com
dummyimage.com
or
ipsumimage.appspot.com
如果你真的希望它是空白的,我会生成一个空白文件并将其放在那里。 生成它似乎有点矫枉过正/不必要。
If you really want it to be blank, I would generate a blank file and place it there. Generating it seems overkill/unnecessary.
我正在使用
我在这里写的一篇关于它的文章 https://fibo. github.io/2021/02/empty-favicon-trick/
I am using just
I wrote an article about it here https://fibo.github.io/2021/02/empty-favicon-trick/
您需要将一个白色的 16x16 .ico 文件放置在站点子文件夹中的某个位置,通常是“img/favicon.ico”,
然后在您的母版页中添加对此文件的引用
You need a white 16x16 .ico file placed somewhere on your site subfolders, usually "img/favicon.ico"
Then add a refference to this file in yout masterpage
您可以使用最小数据 URI。
来自 https://en.wikipedia.org/wiki/Data_URI_scheme
You can use the minimal data URI.
From https://en.wikipedia.org/wiki/Data_URI_scheme