【发布时间】:2024-01-22 13:27:01
【问题描述】:
我正在使用 gzip 压缩我的文件,所以我需要将以下代码添加到顶部。
ob_start("ob_gzhandler");
header("content-type: text/css; charset: UTF-8");
header("cache-control: must-revalidate");
header("expires: ".gmdate('D, d M Y H:i:s', time() + 1000)." GMT");
现在的问题是我文件中的第一行 css 代码不起作用。例如
body{
color: red;
font-weight: bold;
}
使用它,文本将是粗体但不是红色。
期待建议。
提前致谢。
【问题讨论】:
标签: php css header compression gzip