Site in HTTPS, but only a few pages in HTTP

0

I own a website developed in WordPress, and I use WooCommerce only as a catalog. I am using the free SSL of my host (Let's Encrypt), and I need some pages (exceptions) to appear HTTP (without SSL), since I will display an iframe in HTTP. I tried using some techniques to display the iframe in HTTPS, but to no avail.

Can someone give me a light?

Thank you!

    
asked by anonymous 20.06.2017 / 19:40

2 answers

0

You can try using the "Redirection" plugin ( link ) and create exceptions:

SourceURL: link

Target URL: link

    
21.06.2017 / 13:24
0

Leonel, thanks for the response.

So, the plugin is forcing the redirect to http, but I'm getting "Redirection in excess" error. Follow print:

link

I use Let's Crypt (host's cpanel), and the Cache Cache plugin. In both, I set it to NOT forcing https. Here is the content of my .htaccess:

SubstituteMaxLineLength 10m # 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

Do you have any idea what it might be? Once again, thanks for the help.

    
21.06.2017 / 15:42