我使用Google的PageSpeed在我的网站上运行测试,它建议我“利用浏览器缓存”并提供以下资源:
http://code.google.com/speed/page-speed/docs/caching.html#LeverageBrowserCaching
此资源从未解释如何实际更改我的http标头的到期日期。我是通过.htaccess做的吗?我希望尽可能长时间地设置缓存(不违反Google最近一年的政策)。
对于推荐设置的任何建议(对于自定义的PHP驱动的社交网络社区)将不胜感激。
答案 0 :(得分:29)
在根目录中.htaccess:
<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/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=2692000, public"
</FilesMatch>
<FilesMatch "\\.(css)$">
Header set Cache-Control "max-age=2692000, public"
</FilesMatch>
<FilesMatch "\\.(js)$">
Header set Cache-Control "max-age=216000, private"
</FilesMatch>
<FilesMatch "\\.(x?html?|php)$">
Header set Cache-Control "max-age=600, private, must-revalidate"
</FilesMatch>
Header unset ETag
Header unset Last-Modified
</IfModule>
这是我在我管理的每个属性上使用的完全相同的代码,并为我(和PageSpeed)提供了最令人满意的结果。有人可能会争论具体的规则,这就是我说它满足 me 的原因,但它确实满足了PageSpeed。
答案 1 :(得分:1)
可以使用htaccess和php完成。通常,您不希望强制缓存实际的html,因为它的动态数据库驱动内容(如果需要,可以使用header()
php函数完成)。你要缓存的是外部css&amp; javascript和图片文件。
请参阅此处了解.htaccess解决方案:http://www.askapache.com/htaccess/apache-speed-expires.html