Apache配置静态缓存---模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache配置静态缓存---模块相关的知识,希望对你有一定的参考价值。
1.编辑虚拟主机文件
vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/gif "access plus 1 day"
ExpiresByType image/jpeg "access plus 24 hours"
ExpiresByType image/png "access plus 24 hours"
ExpiresByType text/css "now plus 2 hours"
ExpiresByType application/x-javascript "now plus 2 hours"
ExpiresByType application/x-shockwave-flash "now plus 2 hours"
ExpiresDefault "now plus 0 min"
</IfModule>
查看网页的具体元素信息----
curl -x192.168.2.10:80 ‘http://www.xrc.com/static/image/common/logo.png‘ -I
以上是关于Apache配置静态缓存---模块的主要内容,如果未能解决你的问题,请参考以下文章