https to http redirect htaccess

Redirect from HTTPS to HTTP

There are some specific situations when you want to redirect particular website to be opened through HTTP instead of HTTPS. To do so you can add the following directives in your website’s .htaccess file:

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}

This will redirect your “https://laughingadda.com” to “http://laughingadda.com“.



Leave a Reply