Change django's default static directory
问题 I got an issue with Django 1.6: I want to change the default static file directory in django. I don't want it in project/myapp/static but in project/static I readed django's documentation, added STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR,'static') STATICFILES_DIR =(os.path.join(BASE_DIR, 'static'),) In my settings.py Then I ran ./manage.py collectstatic and files copyed as expected. Finally I launched the server, the app is using django boilerplate plugin, so my template