Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Emre Vona

    (@emrevona)

    You can fix the problem. Please have a look at the following tutorial.

    https://www.wpfastestcache.com/tutorial/redirection-to-wp-contentcacheallindex-html-problem/

    Please let me know after you have done.

    Thread Starter dvize

    (@dvize)

    this did not work… however helped me work out that the plugin “Really Simple SSL” was conflicting.. I have removed the plugin and all is working.

    Plugin Author Emre Vona

    (@emrevona)

    nice ??

    Thread Starter dvize

    (@dvize)

    removing RS SSL plugin stops redirecting to https: meaning fastcache does not work with https

    one approach could be for fastcache to wrote the redirect http to https code as an option in plugin … or send the code to be manually inserted.

    here is the code generated by RS SSL

    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.6]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} !=on [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL

    if i add your suggested code, the redirect stops working

    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.6]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} !=on [NC]
    RewriteCond %{REQUEST_URI} !wp-content\/(cache|wpfc-mobile-cache)
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL

    Thread Starter dvize

    (@dvize)

    switching off cache viua settings and switching it back on has worked

    Thread Starter dvize

    (@dvize)

    ahh that only worked for a bit… must of been because cache was empty

    Plugin Author Emre Vona

    (@emrevona)

    contact to me via email and I fix it as soon as possible: [email protected]

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘SSL support’ is closed to new replies.