Gzipping files could be very useful when trying to speed up your website.
Though I do not have the whole .htaccess thing down yet. I have found some code that simply works. As always I post it for myself as well as anyone who needs it.
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>


June 20th, 2009 at 8:57 PM
Can you provide more information on this?