我有一个问题:静态文件没有显示。运行项目时出现 404 错误
[2013 年 9 月 30 日 17:40:38]“GET /polls/img01.jpg HTTP/1.1”404 2755
我想知道我在 pycharm 中的项目是否真的在阅读 settings.py
如何进入调试模式并观看 STATICFILES_DIRS ?我认为它是空的..
我看了很多类似的问题,没有人解决我的问题。感谢您的任何建议!
索引.html
{{ STATICFILES_DIRS }}
<img src="{{ STATIC_URL}}img01.jpg" alt="Hi!" />
设置.py:
import os
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
PROJECT_ROOT + '/static/',
STATIC_URL = '/static/'
STATIC_ROOT = ''