Why my website is not displaying the pages: Example when I type http://domain.com it only display index page, how do I make my website to work on both HTTP and HTTPS
GOOD NEWS: Your website can be redirected from HTTP to secure page HTTPS
How to force your visitors to use your dedicated SSL certificate?
Redirecting to https://www.example.com/ will cause a redirection loop because of 'http://example.com/'
- Note: that by default your domain has auto SSL certificate install as our initiative to keep our customer's website secure and encrypted
- To force all web traffic to use HTTPS, insert the following lines of code in the .htaccess file in your website's root folder
- You need to create ".htaccess" file from your website root directory and add the following content below, this can be inserted on the top or bottom of the file
- Note: make sure you put dot "." in front of the file name
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Save it and should redirect HTTP to HTTPS
NOTE: If you already created .htaccess file and its hidden you need to enable hidden file from cPanel's File Manager
- Go to cPanel -- > cPanel's file manager
- Click on "Settings" on the top-right menu beside "Search"
- Check the "Show Hidden Files (dotfiles)"
- And save