Posts by Miguel Leite • 61 points
1 post
-
6
votes2
answers8320
viewsA: Redirect https website to http
Try it this way, I think it solves your problem. Add these lines to your . htaccess: RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]…