我有一个项目,实际上是来自appfog(https://github.com/appfog/af-python-django)的测试,它在localhost中运行顺畅。但它不起作用,至少静态文件一旦部署在appfog上就无法识别。 我改变了tempaltes的位置。
这是测试页面http://st-test.eu01.aws.af.cm/。同样,管理页面也没有css http://st-test.eu01.aws.af.cm/admin/
这是我的配置(setting.py)
STATIC_ROOT = ''
STATIC_URL = '/static/'
STATICFILES_DIRS = (
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
我也试过
STATIC_ROOT = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'static')
但没有任何改变。
我尝试过在本地进行collectstatic,然后更新存储库中的文件,但没有任何效果。
你们中的任何人都知道如何让它发挥作用吗?
btw,在模板中我使用了{% load staticfiles %}
和{% static "css/style.css" %}
答案 0 :(得分:2)
这对我有用:
settings.py:
import os
ROOT_PATH = os.path.dirname(__file__)
STATIC_ROOT = os.path.join(ROOT_PATH, 'static')
STATIC_URL = '/static/'
urls.py:
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),