I have a site with main domain www.solkey.ir.
I parked www.solkey.co but because main domain have ssl and park domain does not have ssl you can't open www.solkey.co (it shows an ssl security alert in browser like the picture below) .
I connected to my host and they said you have to redirect https://solkey.co >>>>> http://solkey.co in htaccess. but I don't know how to do it.
Below is my htaccess code.
how to redirect solkey.co(with https) to solkey.co(with http)
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress