| Jim Carlock 2006-08-31, 1:44 am |
| "Davey Erwin" <daveyerwin@gmail.com> wrote in message news:gWgJg.2$J23.1@newsfe02.lga...
> I use rewrite "index.html cgi-bin/script.pl". How can use a
> favicon ? I have the favicon in htdocs and in cgi-bin but it
> doesn't show up in FireFox.
That's an HTML question.
(1) Rename favicon to favicon.ico. (This should work for
almost all browsers.)
(2) Add the following line inside your <head></head> tags:
<link rel="shortcut icon" href="favicon.ico" />
Number (2) provides a way to display an icon in some browsers
that doesn't have the "favicon.ico" name. For instance, Firefox
handles animated gifs as an icon...
<link rel="shortcut icon" href="spinner.gif" />
Hope this helps.
Jim Carlock
Post replies to the group.
|