Apache not serving django admin static files

前端 未结 4 1178
情歌与酒
情歌与酒 2020-12-02 09:18

Let me thanks you guys at the Stack Overflow community for helping me with various Django and Apache (with mod_wsgi) errors. I\'ve asked about 5 related questions so far and

4条回答
  •  天命终不由人
    2020-12-02 09:40

    I think you should change:

    Alias /media/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media"
    

    to:

    Alias /static/admin/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media"
    

    Because you have:

    ADMIN_MEDIA_PREFIX = '/static/admin/'
    

提交回复
热议问题