1.

How to redirect https to HTTP URL through .htaccess?

Answer»

PLACE this CODE in your htaccess file.

RewriteEngine On

RewriteCond %{HTTPS} on

RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]



Discussion

No Comment Found