• Hi!

    I need to include on a https webpage an iFrame who does not have an https version
    So I would like to disable the ssl and use the http version of a single page of the web.
    I read that I can do that through the htaccess file, could you help me with that?
    What should I add to redirect the page
    https://mysite.com/libera-tu-movil/
    to
    https://mysite.com/libera-tu-movil/
    ?

    Thanks!!!!

    This is the content of my htaccess

    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.2.15]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} !=on [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL
    # BEGIN WordPress
    <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

Viewing 1 replies (of 1 total)
  • Kunstudio17 I am IN THE SAME EXCACT situation.
    I have a radio station iframe I want to load and it is on plain http so my https website fails.

    I think your problem is easier than mine though. Click on the link for info on ReallySimpleSSL info to take 1 page out of the SSL system LINK HERE

    Unfortunately my SSL is Let’s Encrypt and the link I gave you does not work on my site. Or maybe I am doing something wrong. :/
    A

Viewing 1 replies (of 1 total)
  • The topic ‘Disable ssl for a single page with htaccess’ is closed to new replies.