Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    Hi @igianni84,

    It looks like you have a force redirect to http on your site. This can be in a caching plugin, a redirect plugin or in a custom rule in your .htaccess folder.

    If you clear the cache, and remove any custom redirects, you will be able to load your site over https without any problems.

    Let me know if that helps.

    Thread Starter igianni84

    (@igianni84)

    Hi, thanks for your reply.

    My htaccess is this:

    # BEGIN rlrssslReallySimpleSSL rsssl_version[3.3]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} !=on [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL
    # BEGIN WordPress
    # Le direttive (linee) tra <code>BEGIN WordPress</code> e <code>END WordPress</code> sono
    # generate dinamicamente, e dovrebbero essere modificare solo con i filtri di WordPress.
    # Ogni modifica alle direttive tra questi marcatori sarà sovrascritta.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    and I don’t have any cache system… ??

    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    I now see the problem is not the redirect, but the fact that you’re having mixed content. The mixed content on your site is caused by the fact that you have several images starting with http:www instead of https://www . Because the URL is incorrect, Really Simple SSL doesn’t fix it.

    An example of such an image is this one:
    http:www.associazionecoach.com/wp-content/uploads/2019/03/IMG_hp_coachingclub-1.jpg

    These appear to be background images. If you re-upload them, or change the URL to https, the URL will be https, and the problem should be resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Insecure site problem’ is closed to new replies.