vote up 0 vote down star

Hello. I have no favicon on my web site so there are numerous of failed log entry and I decided to rewrite favicon.ico get request to a page that will generate blank file and return it to a browser?

How do you think, is it possible? Could you please help me a bit how to do that?

flag

74% accept rate

2 Answers

vote up 0 vote down

You need a white 16x16 .ico file placed somewhere on your site subfolders, usually "img/favicon.ico"

Then add a refference to this file in yout masterpage

<head runat="server">
    <link rel="Icon" type="image/png" href="img/favicon.ico" />
</head>
link|flag
vote up 2 vote down

If you really want it to be blank, I would generate a blank file and place it there. Generating it seems overkill/unnecessary.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.