• Stars
    star
    197
  • Rank 197,107 (Top 4 %)
  • Language
    PHP
  • License
    MIT License
  • Created almost 5 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

获取网站的Favicon图标并显示在你的网页上.

getFavicon

获取网站的Favicon图标并显示在你的网页上.

演示

演示地址

安装使用


  • 如果出现获取不了的情况建议删除缓存再试一次
  • 注:文中 faviconw 为 api 文件夹,酌情设置

伪静态

方便cdn缓存

# Nginx规则
rewrite ^/favicon/(.*)\.png$ /favicon/get.php?url=$1;

# Apache 规则
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^favicon/(.*)\.png$ favicon/get.php?url=$1 [L]
</IfModule>

调用方法 http://you.url/favicon/www.iowen.cn.png

  • 注:目标网址不能有 http(s)://

感谢

感谢 jerrybendy ,此版本只是修复一些 bug 和编写了获取方法。