利用浏览器缓存(Apache 2.0)

通过网络获取资源既缓慢又昂贵:下载可能需要在客户端和服务器之间进行多次往返,这会延迟处理并可能阻止页面内容的呈现,并且还会导致访问者的数据成本。所有服务器响应都应指定一个缓存策略,以帮助客户端确定是否以及何时可以重用先前获取的响应。 - PageSpeed 见解

你可以使用这样的浏览器缓存:

# Enable browser caching
ExpiresActive On

# Set the default caching duration
ExpiresDefault "access plus 1 week"

# Change the caching duration by file type
ExpiresByType text/html "access plus 2 weeks"

Apache Docs