现在的位置: 首页 > 互联网络 > 博客心语 > 正文

使用.htaccess缓存 给网站提速

2014-04-18 05:17 博客心语 ⁄ 共 463字 ⁄ 字号 暂无评论

恐怕这个是最有用的代码片段了。这段代码能帮你极大的提高网站的速度!

# 1 YEAR 
<FilesMatch "\.(ico|pdf|flv)$"> 
Header set Cache-Control "max-age=29030400, public" 
</FilesMatch> 
# 1 WEEK 
<FilesMatch "\.(jpg|jpeg|png|gif|swf)$"> 
Header set Cache-Control "max-age=604800, public" 
</FilesMatch> 
# 2 DAYS 
<FilesMatch "\.(xml|txt|css|js)$"> 
Header set Cache-Control "max-age=172800, proxy-revalidate" 
</FilesMatch> 
# 1 MIN 
<FilesMatch "\.(html|htm|php)$"> 
Header set Cache-Control "max-age=60, private, proxy-revalidate" 
</FilesMatch> 

给我留言

留言无头像?