Page not found 404 Django media files

后端 未结 4 1972
盖世英雄少女心
盖世英雄少女心 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 16:05

    In my development server I fixed it by commenting out these lines in settings.py

    STATICFILES_DIRS = (
         os.path.join(BASE_DIR, 'static'),
    )
    

提交回复
热议问题