Need ideas for HTTPS multiple domain solution

Solved this. I just needed to scrap the plugin and use the following code in my htaccess…AND switch my site/home URL to https://. But, now we’re all good.

Here’s what I used, in case anyone else has this issue:

# BEGIN HTTPS REDIRECT
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>
# END HTTPS REDIRECT