hi all, i want to change some of pages of a website from https to http how can i do this? Thanks in advance.
One way to do this would be using .htaccess rewrite, like this: RewriteEngine On RewriteCond %{SERVER_PORT} 443 RewriteCond %{REQUEST_URI} billing RewriteRule ^(.*)$ http://yourdomain.com/billing/$1 [R,L] Code (markup): The above code will redirect all traffic on port 443 (which is the https port) in folder called "billing" on your website. So if you'll access: https://yourdomain.com/billing/anything.php it will take you to http://yourdomain.com/billing/anything.php Hope this helps.