|
Thanks Nitewave
Here's what I did.
I just added those to the htaccess file contained in the enhanced disk cache folder for W3TC (didn't remove the mod_deflate.c rules as they don't conflict) and reloaded the page (I didn' rebuild the cache). Output still contains encoded characters.
Any others ideas ?
# BEGIN W3TC Page Cache cache
FileETag MTime Size
<IfModule mod_mime.c>
AddType text/html .html_gzip
AddEncoding gzip .html_gzip
AddType text/xml .xml_gzip
AddEncoding gzip .xml_gzip
</IfModule>
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI \.html_gzip$ no-gzip
SetEnvIfNoCase Request_URI \.xml_gzip$ no-gzip
</IfModule>
<IfModule litespeed>
RewriteRule \.html_gzip$ - [E=no-gzip:1,NC]
RewriteRule \.xml_gzip$ - [E=no-gzip:1,NC]
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/html M7200
</IfModule>
<IfModule mod_headers.c>
Header set X-Powered-By "W3 Total Cache/0.9.2.8"
Header set Vary "Accept-Encoding, Cookie"
Header set Pragma "public"
Header append Cache-Control "public, must-revalidate, proxy-revalidate"
</IfModule>
# END W3TC Page Cache cache
Last edited by nisiwi; 02-11-2013 at 02:00 AM..
|