Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter malumir

    (@malumir)

    Hi all, in case it’s helpful, here’s what ended up working:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    # RewriteCond %{HTTP:HTTPS} !on
    RewriteCond %{HTTPS} !on
    RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    Thread Starter malumir

    (@malumir)

    Hi @madebymt,

    Thanks for your reply, but I don’t quite understand.

    – What do you mean by checking my chrome console?
    – How do I check for mixed content?
    – I don’t understand what you mean about clicking to force SSL?

    Thank you,

    Malumir R.

Viewing 2 replies - 1 through 2 (of 2 total)