为什么我的 word-press 网站显示不安全

Why did my word-press site is showing not secure

我有一个新网站,但它有一些 SSL 问题。 问题是,当我在地址栏中键入不带 https 的网站 URL 时,仅 (example.com) 变得不安全 当我用它输入 https 时 (https://example.com) 我的网站显示安全。

我已经使用 cPanel 的“让加密 SSL”选项安装了 SSL 证书。 我已经在我的 worpress 设置 > 常规中将 urls 从 http 更新为 https。

帮我解决这个问题我想在没有 https (example.com) 的地址栏中输入我的 url,就像我们通常在互联网上冲浪的其他网站一样,并希望它自动检测到它是安全的网站。

我假设您已经为您的站点获取了 SSL 证书。

您要做的是通过 .htaccess 文件将 HTTP 重定向到 HTTPS。快速搜索会告诉你如何做到这一点,它是这样的:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.example/ [R,L]

另一个简单的解决方案是通过 Apache 配置进行重定向。导航至 /etc/apache2/sites-available/ 并编辑您站点的配置文件。添加以下行:

<VirtualHost *:80>
    ServerName yourdomain.com
    Redirect permanent / https://yourdomain.example/
</VirtualHost>