Stars: 170
Forks: 81
Pull Requests: 0
Issues: 4
Watchers: 3
Last Updated: 2023-04-12 07:26:40
获取网站的Favicon图标并显示在你的网页上.
License: MIT License
Languages: PHP
获取网站的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
感谢 jerrybendy ,此版本只是修复一些 bug 和编写了获取方法。