Traq インストール パッケージに含まれるいくつかの css ファイルは、サーバー上で "text/x-csrc" の MIME タイプを示しています。ファイルはブラウザによって text/html として読み取られ、無視されます。
他の仮想ホスト サイトの CSS ファイルは、text/css として表示されます。
「text/x-csrc」ファイルの内容をコピーしてテキスト エディターに貼り付け、サーバー上に新しいファイルを作成して vi で貼り付けてみました。同じ結果です。
疑わしいファイルinstall.cssは次のとおりです。
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*!
* Traq Install
* Copyright (c) 2009-2012 Traq.io
* @license GNU General Public License v3 only
*/
body {
font-family: Arial, Helvetica, sans-serif;
background: #e9e9e9;
color: #fff;
margin: 30px; }
#wrapper {
width: 580px;
margin: 0 auto;
border-radius: 5px;
box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.4); }
header {
background: #3478AA;
padding: 10px;
height: 20px;
border-radius: 5px 5px 0 0; }
header h1 {
font-weight: bold;
float: left; }
header h2 {
float: right;
font-weight: bold; }
#page {
background: #fff;
color: #000;
padding: 10px;
border-radius: 5px;
margin: -5px 0;
z-index: 10;
position: relative;
font-size: 14px; }
code {
font-family: "Courier New", Courier, monospace;
}
#licence, #config_code {
width: 550px;
height: 400px;
overflow: scroll;
margin: 0 auto;
background: #F6F6F6;
border: 1px solid #e4e4e4;
padding: 4px;
font-size: 12px;
font-family: "Courier New", Courier, monospace; }
#config_code {
height: 125px }
.tabular .group {
margin: 0;
padding: 5px 0;
padding-left: 250px;
clear: left; }
.tabular label {
font-weight: bold;
float: left;
margin-left: -250px;
text-align: right;
width: 245px;
font-size: 12px;
padding-top: 3px; }
.tabular input {
margin-top: 0px;
vertical-align: middle; }
.tabular select {
margin-top: 0; }
.actions {
text-align: center;
margin-top: 5px; }
.error label {
color: red; }
.error input {
border: 1px solid red;
padding: 2px; }
footer {
font-size: 11px;
padding: 6px;
padding-top: 10px;
background: #d9d9d9;
color: #000;
border-radius: 0 0 5px 5px; }
このファイルの何が間違った MIME タイプをトリガーしている可能性がありますか?
編集:
install.css の最初の 2 文字は/*
- コメントの開始タグです。どうやら私の Apache マジック ファイルは、これを CSS ではなく「C ソース」と解釈しました。
デフォルトの install.css ファイルの先頭に改行を追加すると、MIME タイプが C ソースから CSS に変更されました。
このファイルは、Chrome/Firefox によって text/html としてまだ誤って識別されています。これを httpd.conf に追加しました。
AddType text/css .css
まだサイコロはありません。Firefox と Chrome の両方が、これを間違って text/html として読み取っています。
ヘルプ?