添加网站的icon
时间:2005-04-28 来源:litie123
转自http://blog.chinaunix.net/article.php?articleId=23605&blogId=3491
在访问一些大型网站的时候,常常可以在 Web 浏览器的地址栏中看到该网站定制的图标(像新浪、网易、Google 等等 ... ),而自己架设的 Web server 确无法显示可定制图标,该如何设置呢?
1、你要自己定制一个 Website’s Icon ,规格为: 16×16 pixel bitmap,命名为 favicon.ico (为什么叫这个名字后面会讲到),放置在网站的根目录下。
2、在你的网页中添加以下代码段: 将 Icon 命名为 favicon.ico 并放在 WebServer 的根目录下是因为当用户端使用的是 IE 浏览器,并且用户将你的网站保存到收藏夹中时,IE 浏览器会自动搜索 Web Server 的根目录,查找是否有 favicon.ico 文件,如果有,就作为收藏夹该页面的 Icon 。
<iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-6646426715106376&dt=1115039353296&format=300x250_as&output=html&url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fnavy%2F%E6%A1%8C%E9%9D%A2%2F1.html&ad_type=text_image&loc=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fnavy%2F%E6%A1%8C%E9%9D%A2%2F1.html&u_h=768&u_w=1024&u_ah=738&u_aw=1024&u_cd=32&u_tz=480&u_java=true" frameborder="0" width="300" scrolling="no" height="250" allowtransparency="true" /> |
一直以来我以为需要在 Web Server 端设置,就找遍了 Apache httpd Server 的配置文档,上看下看,一直没有找到,令人沮丧。今天,无意间在网上发现一篇帖子,说的就是如何设置 WebSite’s Icon,自己测试了一下,It’s work!令人开心,写出来和大家分享一下。