私は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/css ではなく text/html として提供されています。これは私の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 でリストされます。
これは私を本当に混乱させました