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.
我要做的就是在我的 PHP 网站上添加一个 favicon.ico。是否有一种简单的 PHP 方法可以做到这一点,或者只能通过 HTML 参考页面来完成?
也许使用一些 jQuery/Ajax/JavaScript?
默认情况下,大多数浏览器都会尝试解析 favicon.ico,即使您没有在网站的 HTML 中提及它(只需确保该文件位于网站目录的根目录中)。但是,为了兼容性,您应该在网页部分添加它的 html 代码。
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>