htaccess 增加静态文件缓存和压缩

增加图片视频等静态文件缓存:

<FilesMatch ".(flv|gif|jpg|jpeg|png|ico|swf)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>

增加文件压缩:

<ifmodule mod_deflate.c>  
AddOutputFilter DEFLATE html xml php js css  
</ifmodule>

阿里测:

http://www.alibench.com/

原文地址:https://www.cnblogs.com/showblog/p/3345550.html