Redirect code from https to http?

0

Your can redirect all https (Secure) URL to http by using following code in .htaccess file. RewriteEngine on Options +FollowSymLinks RewriteCond %{SERVER_PORT} !^80$ RewriteRule ^.*$ […]

1 72 73 74 75 76 78