↧
Answer by markdrayton for Why Apache doesn’t gzip css or js files which have...
Hrm, interesting. I can't reproduce this:[root@dev ~]# cat /etc/httpd/conf.d/test.conf<FilesMatch "\.txt$"> SetOutputFilter DEFLATE Header set X-Ping "Pong"</FilesMatch>[root@dev ~]# GET...
View ArticleAnswer by Ben Williams for Why Apache doesn’t gzip css or js files which have...
The $ at the end of your regular expression will match the end of the URL, so if there is anything after the file extension, it won't match. You could omit the $ but then it would match if there was a...
View ArticleWhy Apache doesn’t gzip css or js files which have parameters?
Some CSS & JS files are not compressed by apache with mod_deflate enabled. This files looks like this "[domain.name]/aggregator.css?..." or "[domain.name]/misc/jquery.js?..." in YSlow. The other...
View Article
More Pages to Explore .....