0

我正在尝试按照 YSlow 的建议为图像启用 Expires 标头。我确定我以前有这个工作,但现在当我检查 YSlow 时,它说它们没有被缓存。

对于我的 .htaccess,我尝试过:

ExpiresActive on
ExpiresDefault A0
<FilesMatch "\.(gif|ico|jpg|png)$">
    ExpiresDefault A29030400
    Header append Cache-Control "public"
</FilesMatch>

ExpiresActive on
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 month"

http://www.seoconsultants.com/tools/headers.asp为我的一张图片输出以下内容:

HTTP Status Code: HTTP/1.1 200 OK
Date: Mon, 05 Oct 2009 20:12:04 GMT
Server: Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 PHP/5.2.8
X-Powered-By: PHP/5.2.8
Set-Cookie: PHPSESSID=5d11f4d8aa37ceee6605786e59ff4f0f; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: lastlogin=1254773024; expires=Mon, 02-Nov-2009 20:12:04 GMT
Connection: close
Content-Type: image/jpeg

Set-Cookie 部分看起来正确,但 Expires 标头不正确。如何正确设置 Expires 以及它们为什么不同?我已经仔细检查了 mod_expires 和 mod_headers 是否已启用。

4

1 回答 1

1

从 Set-Cookie 标头看来,这是 php 会话的一部分。php 在 session_start() 之后自动禁用缓存。

您可以通过更改 php.ini 中的 session.cache_limiter 来修改此行为。有关各种设置,请参见PHP 手册页

或者,您可以尝试使用“set”而不是“append”来覆盖 .htaccess 中的标头。

于 2009-10-20T21:56:48.667 回答