to be compatible with WP Fastest Cache
-
Hi, I am developer of WP Fastest Cache. There is a compatible problem with our plugins. If you fix the problem, it can be so good for our users.
The problem:
When the httpS redirection is added into htaccess, the visitors are redirected to the https://yourdomain.com/wp-content/cache/all/index.html
https://www.wpfastestcache.com/tutorial/redirection-to-wp-contentcacheallindex-html-problem/
Solution:
You need to add the following rule into htaccess.
RewriteCond %{REQUEST_URI} !wp-content\/cache\/(all|wpfc-mobile-cache)
Sample htaccess:
# BEGIN HTTPS Redirection Plugin <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ ######## HERE ######## RewriteCond %{REQUEST_URI} !wp-content\/cache\/(all|wpfc-mobile-cache) ######## HERE ######## RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> # END HTTPS Redirection Plugin
Please let me know when you add it.
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘to be compatible with WP Fastest Cache’ is closed to new replies.