当我从我的网站的导航提出不同的请求时,访问静态文件时遇到错误。当我从我的settings.py加载索引页www.xxxx.com/static_url
时,它基本上访问静态文件,但是当我从www.xxxx.com/path
发出请求时,它转到www.xxxx.com/path/static_url
,即404,我什么都没有那里。
我该如何维护?
在base.html
中 <link rel="stylesheet" href="{% static 'css/main.css' %}">
header.html
<li class="nav-item"><a class="nav-link" href="{% url 'files:documents' %}">name</a></li>