1

Google为我的网站编入了HTTP URL,但我希望它为HTTPS编入索引。

我搜索了一个解决方案并找到了React-Helmet

在我实现 React-Helmet 之后,添加 HTTPS URL 作为规范链接。我要求谷歌重新抓取。更新了 Google 结果以包含 React-Helmet 元描述(见下文):

谷歌搜索网络结果:

批评| 文化建设者

cratic.ai

Cratic 是市场上排名第一的文化建设产品:进入组织社会动态的门户。该工具包将 Culture AI 的强大功能置于您的...

这意味着我知道 React-Helmet 正在工作。

但是,谷歌没有更新链接。Google 仍然索引到 HTTP 链接,而不是 HTTPS。这意味着无论何时有人从 Google 找到我的网站,他们都会被发送到不安全的网站,即使我已将 HTTPS 网址添加为规范链接(见下文):

      <Helmet>
        <title>Cratic | The Culture Builder</title>
        <meta name="description" content="Cratic is the #1 culture-building product in the market: a portal into the social dynamics of your organization. This toolkit puts the power of Culture AI at your fingertips." />
        <meta name="keywords" content="culture,change,management,ai,future-of-work,workplace,leading,dynamics" />
        <link rel="canonical" href="https://www.cratic.ai" />
      </Helmet>

我的理解是链接:rel="canonical" href="https://www.cratic.ai"将通知 Google 索引到 HTTPS 网址。但情况似乎并非如此。

你能帮我理解我做错了什么吗?

4

0 回答 0