Force SSL version of your site
You can force all visitors to use the secure version of your site by uploading this to your docs/.htaccess or public/.htaccess file:
<code>RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]code>