Hi all, I want to change the transfer protocol to http from https in a particular website. can any one help on how to change this... Thanks in advance..
The following will force all the requests to a site to be redirected to the https:// version RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule (.*) https://www.example.com/$1 [R=301,L] Code (markup):
Sorry, normally everyone wants to go to https, try: RewriteEngine On RewriteCond %{SERVER_PORT} 443 RewriteRule (.*) http://www.example.com/$1 [R=301,L] Code (markup):