在 settings.py 我得到了 media_url = '/media/' 和 static_url = '/static/'
在 urls.py 我得到:
(r'^media/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT,'show_indexes': True}),
(r'^static/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.STATIC_ROOT,'show_indexes': True}),
当我尝试打开 localhost/media/django 正确加载放置在媒体目录中的图像时。但是当我尝试去 /static/ 我得到:
Request Method: GET
Request URL: localhost/static/
Directory indexes are not allowed here.
但是,当setting.py
我更改 static_url = '/sssstatic/' 时,localhost/static/ 工作正常。
这里有什么问题?