Now a days website without https is not good. To force your website to open only via https protocol add below code in your .htaccess file
RewriteEngine On
#force https
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]