django静态文件配置
STATIC_URL = '/static/'
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static')
setting尾部添加;
static同级目录
文件引入
<link rel = "stylesheet" href = "/static/css/index.css" type="text/css">

浙公网安备 33010602011771号