I'm using Apache.

I'm auto gzipping my HTML & CSS files on the fly using the following directive in my .htaccess file.

# Enable ETag
FileETag MTime Size


# Set expiration header
ExpiresActive on
ExpiresDefault "access plus 1 year"
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType text/css A2592000
ExpiresByType text/javascript A2592000
ExpiresByType text/js A2592000


# Compress some text file types
AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript text/javascript text/js


# Deactivate compression for buggy browsers
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

However, when I use the Firebug plugin for Firefox, I notice that my javascript files are NOT being gzipped (only my HTML and CSS files are).

Any ideas why my JavaScript files are not being gzipped on the fly by Apache?

link|improve this question
feedback

3 Answers

I figured it out, looks like I need it to be:

AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml application/x-javascript text/javascript application/javascript

To get javascript to compress/gzip

link|improve this answer
using this, I still have the same problem. Javascript and Css files are not compressed. – Morteza M. Sep 3 '10 at 16:24
Doesn't work for me either. – sholsapp Sep 18 '10 at 21:33
feedback

Have you declared the text/javascript MIME type in Apache? If your server configuration points to, say, a mime.types file with one of these:

TypesConfig /private/etc/apache2/mime.types

then said file should include this line:

application/javascript  			js

Otherwise, you should see one of these somewhere:

AddType application/javascript .js

At least, this is my first guess, if HTML and CSS files are being compressed and JavaScript files aren't.

link|improve this answer
feedback
# BEGIN GZIP
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</ifmodule>
# END GZIP
link|improve this answer
feedback

Your Answer

 
or
required, but never shown