How to force change the URL from https to http, when a user leaves the https page by clicking on another page?
can you use htaccess? or javascript?
this is for a wordpress site.
Any help is appreciated, thank you!!
How to force change the URL from https to http, when a user leaves the https page by clicking on another page?
can you use htaccess? or javascript?
this is for a wordpress site.
Any help is appreciated, thank you!!
Can you try this code,
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
add it to your .htaccess file. Hope this will help you.
for more refrence visit forum >>