I have the following code in .htaccses
to redirect the whole site to HTTPS
:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://meudominio.com/$1 [R,L]
However, I would like to leave a page out of this redirect in order to open in HTTP:
http://meudominio.com/obrigado.php
How can I apply this rule?