When I visit website using Wordpress Dashboard, browser is showing 'cPanel, Inc. Certification Authority';
But, when I access it directly typing the domain in the URL Bar, no Certification icon is being displayed.
What it means? And how can I fix it?
When I visit website using Wordpress Dashboard, browser is showing 'cPanel, Inc. Certification Authority';
But, when I access it directly typing the domain in the URL Bar, no Certification icon is being displayed.
What it means? And how can I fix it?
"Not Secure" warning refers to the lack of security for the connection to the page that you are visiting. It suggests that the information sent and received with that page can be exploited by the hackers.
Have you done the follow things?
If the answer is yes, there might be an issue with the cache. Try clearing it. It should fix your issue.
Looks like your website has a SSL issued by cPanel, I think if you redirect your non-SSL site to the SSL version it will work. You can add these lines to your .htaccess
file to get it done.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.tld/$1 [R,L]
You can also install a plugin called Really Simple SSL from WordPress directory to do this if you are not comfortable editing server files.
Do let me know the outcome, I will be looking forward to your reply.