Did you install SSL Certificate and still your site is loading insecurely? It could be because your site is not redirecting traffic to the secure https protocol.
1. Login to cPanel to accomplish this task.
2. Locate File Manager on the Files section.
3. Open your “public_html” directory by double-clicking on it. This is where your publicly accessible files are located, in other words, where your website files resides.
4. Locate the file called “.htaccess“. If you cannot see that file, it could be that you have not enabled the display of hidden files on your file manager. Files that start with a dot(.) are hidden files. To activate the display of hidden files, click on “settings” at the top right corner.
A popup will appear. Tick to show hidden files and save.
If after choosing to display hidden files you cannot find it, it means you do not have the file. Just create it by clicking on the “+File” icon and name it .htaccess.
5. Click on the file to select it then click on “edit” at the top navigation menu.
6. A popup will appear, just click on the button “edit”.
7. Put the following content inside the file and save the changes:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com
RewriteRule ^(.*)$ //www.example.com/$1 [R,L]
Please note: i) Replace “example” with your real domain name. ii) If you had the “.htaccess” file before, chances are that it has the line “RewriteEngine On”. If that is the case please do not add another instance of it, just ignore the first line and start from the second one.