I have all my pages loading HTTPS correctly. Problem is that I have some content on one of the pages that will not load due to 'insecure content'. I want this page, and this page only, to load in HTTP instead. Any way I can do this?
I have all my pages loading HTTPS correctly. Problem is that I have some content on one of the pages that will not load due to 'insecure content'. I want this page, and this page only, to load in HTTP instead. Any way I can do this?
RewriteEngine On
RewriteCond %{HTTP_HOST} ^whhsupport.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.whhsupport.com$
RewriteRule ^(.*)$ "https\:\/\/secure21\.webhostinghub\.com\/\~whhsup5\/$1" [R=301,L]
rewrite the condition(above), not sure if it helps. if all your pages loading in https, would it slow down your website? i just want to secure login , register, checkout page, but all url in setting are https, and can not save to http, i change url setting in the database , and keep getting 302 Moved Temporarily from https to http, no idea what is going on.
You must log in to post.