Django管理员网站没有显示CSS样式

时间:2015-02-25 20:26:19

标签: django apache

我的Django管理员网站(它是完全默认的,不是自定义的)没有显示预期的CSS。

看起来像这样:

enter image description here

我可以登录:

enter image description here

但它应该是这样的:

enter image description here

我该如何解决这个问题?

其他可能有用的信息:

我在端口80上的Amazon EC2实例上运行并使用真实URL连接到它。我使用本教程进行了设置: http://www.nickpolet.com/blog/deploying-django-on-aws/1/

在该教程之后,我将此代码放入名为/etc/apache2/sites-enabled/mysite.conf的文件中。我不明白这段代码在做什么,所以我认为这可能与问题有关。

/etc/apache2/sites-enabled/mysite.conf:

WSGIScriptAlias / /home/ubuntu/cs462/mysite/mysite/wsgi.py
WSGIPythonPath /home/ubuntu/cs462/mysite
<Directory /home/ubuntu/cs462/mysite/mysite>
    <Files wsgi.py>
        Order deny,allow
        Require all granted
    </Files>
</Directory>

Alias /media/ /home/ubuntu/cs462/mysite/media/
Alias /static/ /home/ubuntu/cs462/mysite/static/

<Directory /home/ubuntu/cs462/mysite/static>
    Require all granted
</Directory>

<Directory /home/ubuntu/cs462/mysite/media>
    Require all granted
</Directory>

目录结构:

/home/ubuntu/cs462/
        mysite/
            manage.py
            db.sqlite3
            mysite/
                __init__.py
                __init__.pyc  
                settings.py  
                settings.pyc  
                urls.py  
                wsgi.py
            homepage/
                admin.py  
                admin.pyc  
                __init__.py  
                __init__.pyc  
                migrations  
                models.py  
                models.pyc  
                tests.py  
                views.py

settings.py的最后一部分:

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/

STATIC_URL = '/static/'

2 个答案:

答案 0 :(得分:19)

您的Apache配置要求所有静态内容(CSS,JS,图像等)都应位于mysite / static目录中。您应该先将应用程序中的静态内容收集到mysite / static目录中:

cd /home/ubuntu/cs462/mysite
python manage.py collectstatic

更新:如果您没有为静态内容指定位置,则应将以下行添加到settings.py

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

答案 1 :(得分:0)

做完之后

  1. python manage.py collectstatic
  2. 在 settings.py 中,在 STATICFILES_DIRS 变量中,追加

('admin', os.path.join(BASE_DIR, 'static', 'admin'))。这应该有效