/wp-content/cache/all/index.html
-
Sometimes, when I enter the domain into the address bar, it redirects me to the domain name homepage with /wp-content/cache/all/index.html. I don’t want this to show up, and I’ve looked up this error on Google, and have used this suggested fix in my .htaccess file:
# BEGIN /WP-CONTENT/CACHE/ALL/INDEX.HTML FIX
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !wp-content\/cache\/(all|wpfc-mobile-cache)
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# END /WP-CONTENT/CACHE/ALL/INDEX.HTML FIXhttps://www.wpfastestcache.com/tutorial/redirection-to-wp-contentcacheallindex-html-problem/
However, /wp-content/cache/all/index.html still appears sometimes. How do I stop my webpage from redirecting here?
- The topic ‘/wp-content/cache/all/index.html’ is closed to new replies.