Forum Replies Created

Viewing 76 replies (of 76 total)
  • The plugin was only gzipping the home page for me too, but it’s working now that I hand-coded some of the values. I changed these two groups of two lines:

    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 %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]

    To this:

    RewriteCond /wp-content/cache/supercache/richardxthripp.richardxthripp.com/$1/index.html.gz -f
    RewriteRule /wp-content/cache/supercache/richardxthripp.richardxthripp.com/$1/index.html.gz [L]
    
    RewriteCond /wp-content/cache/supercache/richardxthripp.richardxthripp.com/$1/index.html -f
    RewriteRule /wp-content/cache/supercache/richardxthripp.richardxthripp.com/$1/index.html [L]

    You can put your web address in there (check the supercache folder), and prepend to /wp-content if your blog is in a subdirectory. I think some hosts don’t work with %{DOCUMENT_ROOT} (I have Netfirms), which may be the source of the problem.

    I’ve found this tool good for confirming gzip, if you don’t trust the footer in the source code alone. Here’s the analysis of a subpage from my website, for example.

    Good luck getting it to work on your site.

Viewing 76 replies (of 76 total)