Favicon for all the pages in my website

只谈情不闲聊 提交于 2019-12-03 23:13:12

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

Meetai.com

You can get rid of the unnecessary processing and traffic as well as the error log entries by using the following Apache configuration incantations:

# Don't bother looking for favicon.ico
Redirect 404 /favicon.ico

# Send custom text instead of sending the custom error page
<Location /favicon.ico>
    ErrorDocument 404 "No favicon"
</Location>

Modify the apache config.

upload this file to the root directory of your website. For some reason the execute bit has to be set on this file for apache to use it. If you have shell access, type: "chmod +rx favicon.ico".

Then edit httpd.conf and insert the following line:

"AddType image/x-icon .ico"

Your approach works when you don't have access to your apache config. In this case, if you are using any framework then you should add it to your layout/template.

Here is my method for php sites. It ensures that if you update the favicon, it will be updated immediatly when your clients visit your site:

<link rel="shortcut icon" href="favicon.ico?v=<?php echo time() ?>" />
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!