How to force HTTPS in a new .htaccess:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
Copy an existing .htaccess before changing it. Comment out similar code with initial # until you know what works for your needs.