Hello,
i've installed Super-Cache 0.6 @ WP 2.3.3
My problem is, that the browser only gets the .gz compression at the homepage (http://funimal.de); all other pages are uncompressed (e.g. http://funimal.de/tag/clipmix). But these compressed pages exists in the supercache-folder.
This is my complete .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !http://funimal.de
RewriteCond %{HTTP_REFERER} !http://funimal.net
RewriteCond %{HTTP_REFERER} !http://funimal.com
RewriteCond %{HTTP_REFERER} !http://blog.funimal.de
RewriteRule (wp-content/uploads.*\.(gif|jpg|jpeg|png)$)|(lustige-tiere-bilder.*\.(gif|jpg|jpeg|png)$) http://funimal.de/wp-content/themes/design/hotlink.jpg [L]
RewriteRule ^wp-comments-post-(.*).php$ wp-comments-post.php?cpr_code=$1 [L]
</IfModule>
Regards,
Dennis