GZipping CSS and JS files
Posted
by Ryan Giglio
on Stack Overflow
See other posts from Stack Overflow
or by Ryan Giglio
Published on 2010-05-08T20:24:06Z
Indexed on
2010/05/08
20:28 UTC
Read the original article
Hit count: 263
I'm using YSlow to improve the speed of my site, and I'm having trouble with the "compress components with gzip" grade. I have this in my .htaccess file:
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript
But YSlow is saying
There are 4 plain text components that should be sent compressed
* http://crewinyourcode.com/css/reset.css
* http://crewinyourcode.com/css/inner-pages/index.css
* http://crewinyourcode.com/script/css/jquery-ui-1.8.custom.css
* http://crewinyourcode.com/js/inner-pages/index.js
How can I gzip the css and js files?
Also...I don't have access to the httpd.conf file.
© Stack Overflow or respective owner