I like to cache on a subdomain and I have changed in the .htaccess file the
RewriteCond %{DOCUMENT_ROOT}/path-tosubdomain/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
RewriteRule ^(.*) path-tosubdomain/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
--
RewriteCond %{DOCUMENT_ROOT}/path-tosubdomain/cache/supercache/%{HTTP_HOST}/$1/index.html -f
RewriteRule ^(.*) path-tosubdomain/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
But the plugin is still caching on the main domain instead of the subdomain? What do I wrong?