Google Page Speed Online
Google Labs has a nifty feature that was added on March 31 of this year, a page speed analysis tool. I aimed it at this blog, and it suggested that I change my Apache config to send Expires
headers for static content. I added an .htaccess
file to my css
and images
directories, telling Apache to do so:
ExpiresActive On ExpiresDefault "access plus 1 month"
Presto! Faster-loading blog pages. Thanks, Google.