How to redirect all HTTP requests to HTTPS
⧼vector-jumptonavigation⧽
⧼vector-jumptosearch⧽
You need to change your '.htaccess' file with below setting
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]