A solution for the *.cache.html files is to gzip them
to .cache.html.gz files.
If you are using Apache as your web server you can then modify the
mime.conf file (found at /etc/apache2/mods-enabled/mime.conf) by
uncommenting:
AddEncoding x-gzip .gz .tgz
and commenting:
#AddType application/x-gzip .gz .tgz
This means that my apache server will send the .cache.html.gz files in
replacement for the .cache.html files and also send the response
header: content-encoding=gzip
This can also be done in a .htaccess file (RemoveType and AddEncoding)
placed in the cache folder.
On Jul 22, 7:06 am, martinhansen <
martin.hanse...@googlemail.com>
wrote: