利用浏览器缓存

时间:2011-04-08 13:31:21

标签: php html caching browser browser-cache

根据:http://code.google.com/speed/page-speed/docs/caching.html#LeverageBrowserCaching我应该使用浏览器缓存。但是,我不知道如何。

我只是在html部分添加某些标签吗?或者是我需要通过服务器发送给客户端的东西?与php标题有关吗?

2 个答案:

答案 0 :(得分:14)

通过各种HTTP标头控制缓存。你应该阅读Mark Nottingham的Caching Tutorial for Web Authors and Webmasters。您可以使用header函数为从PHP输出的文档设置HTTP标头。

答案 1 :(得分:8)

您可以在.htaccess中执行此类操作。

  ## EXPIRES CACHING ##
<IfModule mod_expires>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule>
  ## EXPIRES CACHING ##