Favicon for all the pages in my website

前端 未结 4 1842
轻奢々
轻奢々 2021-02-18 21:32

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



        
4条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-18 22:01

    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.

提交回复
热议问题