There’s 76 pages total, and 98% need to be HTTPS. Which is why I’m trying to hand code the exceptions rather than list out 74 pages as HTTPS redirection.
I’ve actually tried adding the page inside of the HTTPS Redirection Plugin snippet inside the HTACCESS File. see below how I tried to add the exception to the testpage there. I thought that would work, but its not working either.
# BEGIN HTTPS Redirection Plugin
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{THE_REQUEST} !/testpage/
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# END HTTPS Redirection Plugin