Page not found 404 Django media files

后端 未结 4 1974
盖世英雄少女心
盖世英雄少女心 2021-01-31 15:26

I am able to upload the files to media folder( \'/peaceroot/www/media/\') that I have set up in settings.py as below

MEDIA_ROOT = \'/pe         


        
4条回答
  •  盖世英雄少女心
    2021-01-31 15:54

    Just to add: in case the other answers do not work for you, try putting the static url before the other ones. Like so:

    urlpatterns = static(...) + [...]
    

    What may be happening is that some of your patterns in the list prevent the request from reaching the static handlers. So putting the static handlers first solves this. Worked for me.

提交回复
热议问题