i have a linode sever with centos 6 , as it wont support mod_gzip, i am using mod_deflate.
this is my code in .htacess
<IfModule mod_deflate.c>
<FilesMatch "\\.(js|css|html|htm|php|xml)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
when i tested using http://www.whatsmyip.org/http-compression-test/ , its saying 'my site is gzipped' , but when i used pagespeed in chrome, it still suggest 'Enable compression'
whats wrong? any problem with my .htaccess code?