使用Apache添加expires头

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Apache添加expires头相关的知识,希望对你有一定的参考价值。

ExpiresActive tells the apache2 to use the expires module.

ExpiresDefault specifies the expire date for all mime-types in this directory.

ExpiresByType specifies the expires date for the specified mime-type in this directory.
  1. <IfModule mod_expires.c>
  2. ExpiresActive on
  3. ExpiresByType image/gif “access plus 2 years”
  4. ExpiresDefault ”access plus 1 days”
  5. </IfModule>

以上是关于使用Apache添加expires头的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf .htaccess样板包括expire头,mod pagespeed,缓存控件头,Gzip,Deflate #htaccess #seo

前端性能优化 —— 添加Expires头

前端性能优化 —— 添加Expires头

Linux课程笔记 Apache常用模块的介绍

为Apache添加mod_expire模块

apache下用expires_module让浏览器缓存静态文件