php - Change the favicon in an image url -
i want change favicon of resources html display pages. mean when go image url want see icon in title bar not icon of server (in case xampp).
just put ico file named favicon.ico
in document root.
a quick test open url http://my.domain/favicon.ico
in browser; should display icon.
note icon file must in document root. if can't put file there physically, use apache's mod_alias
map file url. done placing following line in server's configuration (httpd.conf
file):
alias /favicon.ico /path/to/your/images/directory/favicon.ico
Comments
Post a Comment