首页 > 代码库 > Apache 配置静态缓存
Apache 配置静态缓存
想要把东西保存怎么办
1.打开虚拟主机配置文件
vi /usr/local/apache2/conf/extra/httpd-vhosts.conf
添加内容
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/gif "access plus 1 days"
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>
2.重新启动并加载
apachectl -t
apachectl restart
3.测试
curl -x127.0.0.1:80 ‘http://www.lizheng.com/static/image/common/logo.png‘ -I
Apache 配置静态缓存
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。