Apache网页的缓存时间

配置网页缓存时间概述

通过mod_expires模块配置Apache,使网页能在客户端浏览器缓存一段时间,以避免重复请求,减轻服务端工作压力。

启用mod_expires模块后,会自动生成页面头部信息中的Expires标签和Cache-Control标签,从而降低客户端的访问频率和次数,达到减少不必要的流量和增加访问速度的目的。

启用网页缓存功能

查看是否安装了mod_expires模块

[root@localhost ~]# apachectl -D DUMP_MODULES | grep expires 2 Syntax OK 

发现未安装expires_module (static),重新编译安装

[root@localhost ~]# service httpd stop
[root@localhost ~]# cd /usr/src/httpd-2.2.31/
[root@localhost httpd-2.2.31]# ./configure --prefix=/usr/local/httpd
/ --enable-so --enable-rewrite --enable-charset-lite --enable-cgi --enable-deflate --enable-expires && make && make install
[root@localhost ~]# apachectl -D DUMP_MODULES | grep expires
 expires_module (static)
Syntax OK

[root@localhost ~]# service httpd start

为了方便对比,在启用模块前,先使用fiddler工具抓包

Apache网页的缓存时间

修改配置文件启用缓存功能

在httpd.conf主配置文件最后加上如下内容:

[root@localhost ~]# vim /usr/local/httpd/conf/httpd.conf
423 <IfModule mod_expires.c>
424   ExpiresActive On					  //开启网页缓存功能
425   ExpiresDefault "access plus 60 seconds"	          //http协议下任的文档都是60秒之后过期
426 </IfModule>

Apache网页的缓存时间

  

上一篇:SQL server 表之间的关系生成图


下一篇:使用jQuery向asp.net Mvc传递复杂json数据-ModelBinder篇