Hi,
I am trying to compress pages using gzip. If I put the following in my root htaccess file, will it compress my whole site, or would I need to put it in each directory/htaccess file that I have?
Thanks
<ifModule mod_deflate.c>
<filesMatch "\\.(js|css|html|shtml|php|txt)$">
SetOutputFilter DEFLATE
</filesMatch>
</ifModule>