Add an Expires or a Cache-Control Header

再简单点说:就是在.htaccess文件中写入以下内容:

ExpiresActive On
ExpiresDefault A600
ExpiresByType image/x-icon A2592000
ExpiresByType application/x-javascript A2592000
ExpiresByType text/css A604800
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType text/plain A86400
ExpiresByType application/x-shockwave-flash A2592000
ExpiresByType video/x-flv A2592000
ExpiresByType application/pdf A2592000
ExpiresByType text/html A600

text/css之类代表文件类型,A2592000表示在浏览器中的缓存时间,2592000秒=30天。

Gzip components
Gzip压缩是减少文件体积增加用户体验的简单方法,
同样,添加以下代码到.htaccess文件即可。

AddOutputFilter DEFLATE html xml php js css

配置ETag

这段话我没看明白,总之结论是:如果你没有使用ETag提供的灵活的验证模式,那么干脆把所有的ETag都去掉会更好。
 

你可能感兴趣的:(职场,休闲,AddOutputFilter,ExpiresByType,ExpiresActive)