とりあえず,IE 6 の場合デフォルトで CGI モードになるようにしてみますた.
ただ,これまでに設定された Cookie が残ってるとそのままですが.
# IE 7 以上,Firefox や Opera は従来通り.



>>459 ブラウザの種類やちゃんと表示されないという状況をもうちょっと具体的に教えてもらえると
参考になりますが......とりあえず CGI モードにすれば何とかなるのではないかと......

>>460 >>325 の方でしょうか? たぶん Pango が西欧系言語と勝手に判定して
フォントが変わってしまって,しかもフォントの文字幅を正しく把握していないために
起こる現象のような気もしますが...... >>338 で指摘されてる globaladvance については,
当方の fonts.conf ではこんな感じですね.

<!--
  Some Asian fonts misadvertise themselves as monospaced when
  in fact they are dual-spaced (half and full).  This makes
  FreeType very confused as it forces all widths to match.
  Undo this magic by disabling the width forcing code -->
        <match target="font">
                <test name="family"><string>GulimChe</string></test>
                <edit name="globaladvance"><bool>false</bool></edit>
        </match>

        <match target="font">
                <test name="family"><string>DotumChe</string></test>
                <edit name="globaladvance"><bool>false</bool></edit>
        </match>

        <match target="font">
                <test name="family"><string>BatangChe</string></test>
                <edit name="globaladvance"><bool>false</bool></edit>
        </match>

        <match target="font">
                <test name="family"><string>GungsuhChe</string></test>
                <edit name="globaladvance"><bool>false</bool></edit>
        </match>