Turn On Compression to Speed Up Apache – Easy Apache Speed TipsSeptember 5th, 2007
« Downloading Multiple Files with Curl SimultaneouslyWget Trick to Download from Restrictive Sites »
Apache 2 uses mod_deflate to quickly and easily compress your static .css and .js files before you send them to a client. This speeds up your site like crazy!
FWIW, this is how I configure Apache to set the Expires header:
##################################################### # CONFIGURE media caching # Header unset ETag FileETag None <FilesMatch "(?i)^.*\.(ico|flv|jpg|jpeg|png|gif|js|css)$"> Header unset Last-Modified Header set Expires "Fri, 21 Dec 2012 00:00:00 GMT" Header set Cache-Control "public, no-transform" </FilesMatch> # #####################################################The reason I remove and disable the ETag is because supposedly some browsers will ignore your Expires header when it’s present:
The reason I remove the Last-Modified header is for the same reason:
The reason I set the Cache-Control header to ‘public’ is so the browser will cache media over HTTPS (see tip #3):
The reason I set the Cache-Control header to ‘no-transform’ is to prevent proxies from modifying my content.
–Bil
Easy Apache Speed Tips Articles
This goes in your root .htaccess file but if you have access to httpd.conf that is better.
This code uses the FilesMatch directive and the SetOutputFilter DEFLATE directive to only target files ending in .js or .css
<IfModule mod_deflate.c> <FilesMatch "\.(js|css)$"> SetOutputFilter DEFLATE </FilesMatch> </IfModule>
« Downloading Multiple Files with Curl SimultaneouslyWget Trick to Download from Restrictive Sites »
Tags: Cache, caching, etag, expires header
The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. Tim Berners-Lee
It's very simple -
you read the protocol
and write the code.
-Bill Joy
HTML | DCMI | GRDDL | XOXO | XDMP | XFN | DOM | XML | XHTML 1.1 Strict | CSS 2.1 | W3C | WAI | DISA | ICSI | GIAC | SANS RR | GHOST
Authority: 110 ↑ TOPExcept where otherwise noted, content on this site is licensed under a Creative Commons Attribution 3.0 License, just credit with a link.
This site is not supported or endorsed by The Apache Software Foundation (ASF). All software and documentation produced by The ASF is licensed according to these terms. "Apache" is a trademark of The ASF.
I normally add php|html to my match for zlib compression, any reason why you haven’t? Is deflate better than zlib for some reason. Also with javascript if you’ve got minified files I imagine it’s not going to help much (if at all).
Yes. You can test my site out using the http headers tool. Just put “none” in the accept-encoding field.
Though actually, I am using gzip for compression and I am actually serving both XTHML 1.1 with the application/xhtml+xml content-type, and plain text/html for microsoft browsers that can’t handle it.
I do have mod_deflate turned on for my javascript and css files though.
Will the server in this case send uncompressed content to client if the client didn’t send deflate in HTTP_ACCEPT_ENCODING?
@ Jason
You aren’t using a FilesMatch but other than that I couldn’t tell you, it depends on your server, configuration, and modules.
@ Prasannah
This really won’t make that much of a difference to begin with but you can use the http header viewer tool by requesting directly your .css or .js file with this .htaccess compression code on and then with this code off and you should see a difference unless something on your end isn’t working correctly.
I don’t see any changes in the page load speed AT ALL! I used this tool (Pingdom) to test my speeds. Any thoughts?
Thanks for your attention:
My .htaccess file:
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress #12 Months Header set Cache-Control "max-age=29030400, public" Header unset ETag FileETag None # 2 HOURS Header set Cache-Control "max-age=7200, must-revalidate" SetOutputFilter DEFLATEI am not getting an error. It is just not working with the css and js according to yslow. I was able to set a php.ini file to gzip the php. Although, I am not sure how to do the same thing for the css/js.
@ jason
Sounds like you don’t have
mod_deflate. I need more info like error messages, how you know its not working, and current .htaccess if I were going to answer.I am trying to add gzip compression for a friends site which is WP. I already set up compression for php files using php.ini. However, I can’t get the js|CSS to work. Any suggestions. The site is hosted with Godaddy, apache of course.
@ Everybody
Sorry for the delay people, I just updated the code to prevent the 500 error, which is telling you that you don’t have the deflate module. At least now you know which module you are missing!
When I added the above code, I was given an internal server error. I am not sure why? Any suggestions?
If you get an 500 internal server error, means that your server don’t have mod_expire.so and mod_headers.so loaded. Edit your httpd.conf and add these lines :
Cheers
My site ALSO throws an Error 500.
I can’t see a problem with the code, so something has to be set at the server to accept this, right?
My site throws up a 500 error when I do this. Any suggestions?