• Resolved smcraig

    (@smcraig)


    You may have already answered this and if you did I apologize, however, I’m showing some weird occurrences with the plugin. When I access this page from it directly, it does secure on desktop, but not mobile. If I access it from the original URL (iriserealty.com), it does secure.

    How do I force the SSL to activate all the time?

    Thanks! Got the plugin working mostly though, so I’m super happy!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author matthias.wagner

    (@matthiaswagner)

    hy,
    if you experience different behaviour on different devices/browsers, it is very likely because one of these has a redirection from http to https or the other way in its cache. this is tricky, you must always be sure to have the browser cache completely disabled while testing.
    anyway, you can put this in your htaccess file to redirect any request to its https equivalent.

    # BEGIN https
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    #Now, rewrite to HTTPS:
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </IfModule>
    # END https
    Thread Starter smcraig

    (@smcraig)

    This worked!

    Wow, amazing response times! This plugin is a dream once you get it working, exactly what my client needed, :D.

    Plugin Author matthias.wagner

    (@matthiaswagner)

    glad to hear 🙂
    we‘d be happy about a 5* review and if you (or your client) have a few dollars of budget left for a support-donation 😉

    matt

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

The topic ‘SSL Issues’ is closed to new replies.