I need to do the following: My current address looks like: https://www.domain.com
I want to redirect with htaccess: www.domain.com TO https://www.domain.com and http:/
You can achieve both redirect in a single rule like this:
RewriteEngine On RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ https://www.yourdomain.com%{REQUEST_URI} [R=301,L,NE]