django static文件夹下面的内容方法不了 出现404 500错误
需要查看自己的settings文件确保有一下内容
import os
project_root = os.path.dirname(__file__)
debug = true
static_url = ‘/static/’
staticfiles_dirs = (
os.path.join(project_root, ‘static’),
)
staticfiles_finders = (
‘django.contrib.staticfiles.finders.filesystemfinder’,
‘django.contrib.staticfiles.finders.appdirectoriesfinder’,
)
如果项目是使用eclipse启动的django工程 settings文件中的debug 值要等于true 静态文件才能访问?这一点不太明白
如果需要部署到web站点上需要在apache中配置静态文件映射
servername www.mydjangosite.com
serveralias mydjangosite.com
serveradmin fake@mydjangosite.com
documentroot /path/to/mydjangosite
options followsymlinks
allowoverride none
order allow,deny
allow from all
alias /static/ /path/to/mydjangosite/static/
order allow,deny
allow from all
# the following installs the django wsgi app
wsgidaemonprocess www.mydjangosite.com processes=2 threads=15 display-name=%{group}
wsgiprocessgroup www.mydjangosite.com
wsgiscriptalias / /path/to/mydjangosite/wsgi.py
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
更多python django 访问静态文件出现404或500错误相关文章请关注php中文网!