$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>urls - How to add domain security certification, in WordPress website?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

urls - How to add domain security certification, in WordPress website?

matteradmin11PV0评论

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?

Share Improve this question asked Dec 31, 2018 at 14:31 Ahmed QayyumAhmed Qayyum 111 bronze badge 1
  • Welcome to WPSE, clear the browser cache because overhere it shows nicely. You did all well it seems. – Charles Commented Jan 1, 2019 at 10:12
Add a comment  | 

2 Answers 2

Reset to default 1

"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?

  1. Getting an SSL certificate
  2. Installing your certificate through your web host
  3. Changing your WordPress URL
  4. Implementing a site-wide 301 redirect

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.

Post a comment

comment list (0)

  1. No comments so far