Apache的缓存JS CSS文件 [英] Apache Caching JS CSS Files

查看:226
本文介绍了Apache的缓存JS CSS文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经启用了mod_cache的,指定mod_expires,mod_headers中模块我的httpd.conf还增加下列文本

I have enabled mod_cache, mod_expires, mod_headers modules in my httpd.conf and also added following text

 ExpiresActive On


<ifModule mod_deflate.c>
  <filesMatch "\.(css|js|x?html?|php)$">
    SetOutputFilter DEFLATE
  </filesMatch>
</ifModule>



<ifModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 1 seconds"
  ExpiresByType image/x-icon "access plus 2592000 seconds"
  ExpiresByType image/jpeg "access plus 2592000 seconds"
  ExpiresByType image/png "access plus 2592000 seconds"
  ExpiresByType image/gif "access plus 2592000 seconds"
  ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
  ExpiresByType text/css "access plus 604800 seconds"
  ExpiresByType text/javascript "access plus 216000 seconds"
  ExpiresByType application/javascript "access plus 216000 seconds"
  ExpiresByType application/x-javascript "access plus 216000 seconds"
  ExpiresByType text/html "access plus 600 seconds"
  ExpiresByType application/xhtml+xml "access plus 600 seconds"
</ifModule>



<ifModule mod_headers.c>
  <filesMatch "\.(ico|jpe?g|png|gif|swf)$">
    Header set Cache-Control "max-age=2592000, public"
  </filesMatch>
  <filesMatch "\.(css)$">
    Header set Cache-Control "max-age=604800, public"
  </filesMatch>
  <filesMatch "\.(js)$">
    Header set Cache-Control "max-age=216000, public"
  </filesMatch>
  <filesMatch "\.(x?html?|php)$">
    Header set Cache-Control "max-age=600, public"
  </filesMatch>
</ifModule>



<ifModule mod_headers.c>
  Header unset ETag
</ifModule>
FileETag None



<ifModule mod_headers.c>
  Header unset Last-Modifiedd
</ifModule>


<IfModule mod_cache.c>

LoadModule mem_cache_module modules/mod_mem_cache.so
<IfModule mod_mem_cache.c>
CacheEnable mem /
MCacheSize 4096
MCacheMaxObjectCount 100
MCacheMinObjectSize 1
MCacheMaxObjectSize 2048
</IfModule>
</IfModule> 

但文件不会被缓存。我得到这样的信息标题

but files are not caching. I get headers information like

 Response
Date    Tue, 23 Aug 2011 11:30:09 GMT
Server  Apache/2.2.19 (Win32) PHP/5.3.6
Last-Modified   Mon, 22 Aug 2011 21:24:19 GMT
Accept-Ranges   bytes
Cache-Control   max-age=216000, public
Expires Thu, 25 Aug 2011 23:30:09 GMT
Vary    Accept-Encoding
Content-Encoding    gzip
Content-Length  2875
Keep-Alive  timeout=5, max=100
Connection  Keep-Alive
Content-Type    application/javascript

Request Headers

Host    workflowsf.com
User-Agent  Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1
Accept  */*
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
Keep-Alive  115
Connection  keep-alive

具有u在那里我错了什么想法?
在此先感谢

Have u any idea where I am wrong? Thanks in advance

推荐答案

这看起来像一个相当不错的配置。你有你的头未设置最后一Modifiedd一个错字,你也可能不需要的第一行,因为它是在行的副本&LT; ifModule mod_expires.c方式&gt; ,这是它一个更好的地方。

That looks like a fairly good config. You have a typo with your Header unset Last-Modifiedd and also you probably don't need the first line as it is a duplicate of the line inside <ifModule mod_expires.c> and that is a better place for it.

这篇关于Apache的缓存JS CSS文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆