django not found static files in the subfolder of static
问题 django 1.6.5 My static files is under subfolder of static. djangoprj djangoprj settings.py urls.py wsgi.py __init__.py static myapp mystaticfiles ... apps myapp ... templates *.html ... In my templates file, I link static file as full path. <img src="/static/myapp/images/my.png" /> But those file are not found. I got 404 error. When change settings.py as STATIC='/static/myapp/' I can get those static files. But I am not want to do that. Why dose it not wok, when STATIC='/static/' ? Is there