关于静态文件的问题似乎问了很多。
我没有发现有关某些文件的任何信息。
我只是在解决Favicon问题。首先,我添加了一个favicion.ico。一切顺利,一切顺利。
然后出于某种原因,我想添加更多不同大小的图标。
所以我添加了一堆favicons-nnXnn.png并为每个链接添加标签。
{% load staticfiles %}
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="{% static 'apple-touch-icon-57x57.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{% static 'apple-touch-icon-114x114.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{% static 'apple-touch-icon-72x72.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{% static 'apple-touch-icon-144x144.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="{% static 'apple-touch-icon-60x60.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="{% static 'apple-touch-icon-120x120.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="{% static 'apple-touch-icon-76x76.png' %}" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{% static 'apple-touch-icon-152x152.png' %}" />
<link rel="icon" type="image/png" href="{% static 'favicon-196x196.png' %}" sizes="196x196" />
<link rel="icon" type="image/png" href="{% static 'favicon-96x96.png' %}" sizes="96x96" />
<link rel="icon" type="image/png" href="{% static 'favicon-32x32.png' %}" sizes="32x32" />
<link rel="icon" type="image/png" href="{% static 'favicon-16x16.png' %}" sizes="16x16" />
<link rel="icon" type="image/png" href="{% static 'favicon-128.png' %}" sizes="128x128" />
<meta name="application-name" content="website"/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="{% static 'mstile-144x144.png' %}" />
<meta name="msapplication-square70x70logo" content="{% static 'mstile-70x70.png' %}" />
<meta name="msapplication-square150x150logo" content="{% static 'mstile-150x150.png' %}" />
<meta name="msapplication-wide310x150logo" content="{% static 'mstile-310x150.png' %}" />
<meta name="msapplication-square310x310logo" content="{% static 'mstile-310x310.png' %}" />
但是这些似乎不起作用。我得到404。我已经部署在生产服务器中。运行gunicor和nginx。我在我的静态文件夹中看到了文件,无论是工作的文件还是更新的文件。
有些工作怎么做,而另一些却没有?