Hello,
Webmaster Tools reports many errors about urls with many///// at the end (I do not know, why). Fact is: This leads to problems when cache is active. If I am logged in as an admin (so without cache) this problem does not come up.
I wrote a rule into my htaccess like this:
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
</IfModule>
When this is active those ///// links automatically link to the normal adress with just one / at the end. Fine. But when the page is CACHED, the complete url of the site changes to the cache-url like http://www.URL.de/wp-content/cache/page_enhanced/www.URL.de/_index.html_gzip
Even when I type in the correct adress to my site. Example: http://www.url.de becomes http://www.URL.de/wp-content/cache/page_enhanced/www.URL.de/_index.html_gzip
This should not happen. Is there a chance to get this fixed through an update of W3 Total Cache?