Wednesday, 9 March 2016

Redirect https to http through htaccess

Add below code in you htaccess file for redirect https to http

RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]

No comments:

Post a Comment