Posts by Rodrigo Colombo • 61 points
1 post
-
6
votes1
answer692
viewsQ: Redirect all pages to HTTPS except one in particular
I have the following code on .htaccses to redirect the entire site to HTTPS: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://meudominio.com/$1 [R,L] However I would like to…