I want to rewrite all https:// url's to http://
After searching on Google and this forum I found the following post on:
mikemwe uses the following code:
RewriteEngine on
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ [R,L]
To rewrite all https:// url's to http://
Is this method full proof? I have no use for making certain folders secure or anything like that. I just don't want any https:// url's.
And how about using R=301 instead of R?
After searching on Google and this forum I found the following post on:
mikemwe uses the following code:
RewriteEngine on
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ [R,L]
To rewrite all https:// url's to http://
Is this method full proof? I have no use for making certain folders secure or anything like that. I just don't want any https:// url's.
And how about using R=301 instead of R?