我正在使用 Django 1.8。我的两个 css 文件的状态均为 200,但 Firefox 显示:
The stylesheet http://localhost:8000/css/full-width-pics.css was not loaded because its MIME type, "text/html", is not "text/css". localhost:8000
The stylesheet http://localhost:8000/css/mainstyle.css was not loaded because its MIME type, "text/html", is not "text/css". localhost:8000
无论出于何种原因,这些文件都作为 text/html 而不是 text/css 提供。这是我的html。
<link href="css/full-width-pics.css" rel="stylesheet" type="text/css" />
<link href="css/mainstyle.css" rel="stylesheet" type="text/css" />
这是在 base.html 文件中。我在我的 index.html 文件中扩展了 base.html。在我开始使用模板继承并在 index.html 中包含所有内容之前,它运行良好。
我在 Ubuntu 上。我检查了 /etc/mime.types。css 与 text/css 一起列出。
这让我很困惑