8

我目前正在缓存我deflate的 Apache 配置中使用的 CSS、JS 和图像。

这是我的代码:

AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html

AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml

AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript

现在,当我检查我的标题时,我看到:

Host                www.domain.com
User-Agent          Mozilla/5.0 (X11; Linux i686; rv:6.0.2) Gecko/20100101 Firefox/6.0.2
Accept              text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language     en-us,en;q=0.5
Accept-Encoding     gzip, deflate
Accept-Charset      ISO-8859-1,utf-8;q=0.7,*;q=0.7
Connection          keep-alive
If-Modified-Since   Fri, 30 Sep 2011 01:05:01 GMT
If-None-Match       "124741af-1c4b9-4ae1136f3f9d0"
Cache-Control       max-age=0

一切看起来都很好,这Accept-Encoding就是gzip, deflate我想要的,但现在我看到Cache-Controlmax-age=0

这会破坏使用 deflate 进行缓存的目的吗?这是否意味着它只缓存 1 天而第二天它不会缓存它或者它必须重新加载它?

注意:我的图片很少更改,我的 CSS 和 JS 每周更改一次。

4

1 回答 1

13

这是 2 个独立的东西:mod_deflatemod_expires

这里有一些你会觉得有趣的文章:

http://developer.yahoo.com/performance/rules.html

LiveHttpHeaders:哪个缓存控制信息是正确的

于 2011-10-10T23:40:40.833 回答