博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache提示没有设置 max-age or expires解决办法
阅读量:5906 次
发布时间:2019-06-19

本文共 665 字,大约阅读时间需要 2 分钟。

大家看到这个就应该知道只要设置 max-age or expires就行了。下面说的方法是在设置 apache下的方法:

产生要开启

代码如下 复制代码

LoadModule headers_module modules/mod_headers.so

然后再在.htaccess文件下面写上

代码如下 复制代码

<IfModule mod_headers.c>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
<FilesMatch (www.111cn.net)"\.(xml|txt)$">
Header set Cache-Control "max-age=18000, public, must-revalidate"
</FilesMatch>
<FilesMatch "\.(html|htm|php|shtml)$">
Header set Cache-Control "max-age=3600, must-revalidate"
</FilesMatch>
</IfModule>

如果没有开启“mod_headers”模块,而又没有加“<IfModule mod_headers.c>”条件判断的话,网站就会出错!

设置 max-age or expires是用来缓存静态文件,提升网站的的加载速度
from:

转载地址:http://yacpx.baihongyu.com/

你可能感兴趣的文章
nginx_lua_waf安装测试
查看>>
WinForm窗体缩放动画
查看>>
JQuery入门(2)
查看>>
linux文件描述符
查看>>
传值引用和调用引用的区别
查看>>
hyper-v 无线网连接
查看>>
Python3.7.1学习(六)RabbitMQ在Windows环境下的安装
查看>>
Windows下memcached的安装配置
查看>>
ubuntu: firefox+flashplay
查看>>
web.xml 中CharacterEncodingFilter类的学习
查看>>
贪吃蛇逻辑代码
查看>>
ASP.NET视频教程 手把手教你做企业论坛网站 视频教程
查看>>
[LeetCode] Meeting Rooms II
查看>>
从Swift学习iOS开发的路线指引
查看>>
Scribes:小型文本编辑器,支持远程编辑
查看>>
ssh 安装笔记
查看>>
3-继承
查看>>
海归千千万 为何再无钱学森
查看>>
vue2.0 仿手机新闻站(六)详情页制作
查看>>
JSP----九大内置对象
查看>>