我在应用我的 CSS 时遇到了一些问题。(我正在使用 Django 1.5)
这是我的项目结构:
project
- app
- project
- static
- css
- style.css
- template
- index.html
我的设置是默认的,除了添加我的数据库设置。
这是我的 index.html 对 css 的引用:
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<title>app</title>
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}" />
</head>
<body>
</body>
</html>
我的错误是 style.css 位置的 404:
[24/May/2013 17:24:57] "GET /static/css/style.css HTTP/1.1" 404 1676
感谢有人可以让我知道我错过了哪一部分。谢谢!