I've tried editing the htaccess file multiple times and have added the following lines to it at the end of the document to disable HTTPS on a single webpage. Unfortunately, these do not work.
RewriteCond %{HTTPS} on
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{REQUEST_URI} ^/(index\.php)?$ [NC]
RewriteRule .* http://%{HTTP_HOST}%{REQUEST_URI} [R=301, NC]
RewriteCond %{HTTPS} !^on$
RewriteCond %{REQUEST_URI} ^(/suburl)$
RewriteRule (.*) https://www.my_site.com/$1 [R,L]
I used really simple SSL to convert my entire site to SSL then disabled it, but I still want to disable SSL on a single page because of an iframe issue where the website is not loading through HTTPS. If there are any workarounds, I would greatly appreciate it.