Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Favicon for all the pages in my website

I've learned that the way to add favicon for a web page is to have the following lines in the page.

<link rel="SHORTCUT ICON" type="image/x-icon" href="http://mysite.com/faviconfilename.ico"/>
<link rel="icon" type="image/x-icon" href="http://mysite.com/faviconfilename.ico" />

Should i add this code in each and every page my site has?? I use Apache - tomcat clustering to serve pages. Is there any other easy way to do this?

like image 580
Senthil Kumar Avatar asked Apr 28 '10 12:04

Senthil Kumar


1 Answers

It is usually enough to place a file called "favicon.ico" in the root of your website.

like image 104
Klaus Byskov Pedersen Avatar answered Oct 12 '22 14:10

Klaus Byskov Pedersen