Go to file
owen dc16836ec4 20241218 2024-12-18 16:55:22 +08:00
cache the first 2019-11-26 19:16:45 +08:00
Favicon.php 20241218 2024-12-18 16:55:22 +08:00
LICENSE Create LICENSE 2023-04-12 15:26:40 +08:00
README.md Update README.md 2020-02-09 14:53:05 +08:00
config.php 20241218 2024-12-18 16:55:22 +08:00
favicon.png the first 2019-11-26 19:16:45 +08:00
get.php 20241218 2024-12-18 16:55:22 +08:00

README.md

getFavicon

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

演示

演示地址

安装使用

伪静态

方便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 和编写了获取方法。