欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python django整理(五)配置favicon.ico,解决警告Not Found: /favicon.ico

程序员文章站 2024-02-16 23:28:16
...

Django 浏览器打开警告Not Found: /favicon.ico,解决问题需要三步

1.首先准备favicon.ico图片,网上有很多转化工具,放到在前面python django整理(四)目录的static/images下
python django整理(五)配置favicon.ico,解决警告Not Found: /favicon.ico
2.在head中增加以下代码

 {% load staticfiles %}
    <link REL="SHORTCUT ICON" HREF="{% static "images/favicon.ico" %}"/>

django就可以调用静态文件了,模版文件还要注意写法,{% load staticfiles %}不要忘记写
python django整理(五)配置favicon.ico,解决警告Not Found: /favicon.ico

3.至此完成
python django整理(五)配置favicon.ico,解决警告Not Found: /favicon.ico

参考文献:https://www.cnblogs.com/leohahah/p/9081320.html