这是此问题的直接副本,但提供的解决方案不起作用。
作为我维护的 WordPress 插件的一部分,我目前正在使用以下代码生成一个动态 CSS 文件:
public static function buildCustomCss() {
if (1 == intval(get_query_var(self::$query_var))) {
ob_start();
global $css;
$expires = 60 * 60 * 24 * 365; // cache for a year
header('Pragma: public');
header('Cache-Control: maxage=' . $expires);
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + $expires) . ' GMT');
header('Content-type: text/css');
echo str_replace('>', '>', esc_html($css));
ob_end_flush();
exit;
}
}
使用的标头值与上面引用的问题中使用的匹配,但 Chrome和Firefox 都拒绝接受缓存请求。我尝试了多台服务器,每台服务器每次都吐出一个200
响应。我希望这会被证明是一个比仅仅将 CSS 放入主页更好的解决方案,但如果我不能让缓存工作,那么它最终会变得更糟。
请求标头的完整列表(Chrome):
Accept:text/css,*/*;q=0.1
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Cache-Control:max-age=0
Connection:keep-alive
Cookie:<cookie values>
DNT:1
Host:example.org
Referer:http://example.org/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36
响应标头的完整列表(已编辑以包括测试的最新标头,包括public
在两者中pragma
和中cache-control
):
Cache-Control:no-transform,public,maxage=31536000
Connection:keep-alive
Content-Type:text/css; charset=UTF-8
Date:Sun, 30 Mar 2014 22:55:57 GMT
Expires:Mon, 30 Mar 2015 22:55:56 GMT
Pragma:public
Server:nginx
Transfer-Encoding:chunked