1

我将以下代码添加到 htaccess 文件中:

<IfModule mod_expires.c>

# Enable expirations
ExpiresActive On

# Default directive
ExpiresDefault "access plus 1 month"

# Images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"

# CSS
ExpiresByType text/css "access 1 month”

# Javascript
ExpiresByType application/javascript "access plus 1 year"

</IfModule>

但谷歌的 PageSpeed 和 Chrome 的 YSlow 插件并未反映这些变化。

根据上面的代码,有人可以解释为什么我继续收到 PageSpeed 和 YSlow 的过期标头的 F 级吗?更重要的是,为什么 Google 的 PageSpeed 显示定义的文件类型在 4 小时内过期,而不是在 htaccess 文件中定义的 1 个月?

这是我的响应标头:

Date: Wed, 17 Oct 2012 15:29:36 GMT
Content-Type: text/html
Server: Nginx / Varnish
X-Powered-By: PHP/5.2.17
Cache-Control: max-age=2592000
Expires: Fri, 16 Nov 2012 15:29:36 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Age: 0

200 OK
4

0 回答 0