0

如何在Gitbook中进行 google 验证所有权站点,例如将站点地图上传到 Google?

谷歌解释了许多技术。显然,最简单的方法是将 HTML 文件上传到主文件夹页面:https ://support.google.com/webmasters/answer/35179?hl=en

问题是 gitbook 不会以这种方式上传文件:www.mygitbooksite.com/googleVerificacion4341321.html. 但是可以在文件夹中添加:www.mygitbooksite.com/someFolder/googleVerificacion4341321.html

我找到了一个与解决方案相关的 gitbook 插件:https ://www.npmjs.com/package/gitbook-plugin-verifications

我进行了很多搜索,但没有运气进行此验证,仅在如何添加谷歌分析方面。

提前致谢!

4

1 回答 1

1

回答我自己的问题,我找到了一种通过HTML 元标记验证网站的方法:

安装插件gitbook-plugin-meta-single,然后编辑book.json文件:

  "pluginsConfig": {
        "meta-single": {
            "name": "google-site-verification",
            "content": "here the key string provided by google"
        }
    }

它将在<HEAD>标签内添加密钥

 <HTML>
  <HEAD>
  <TITLE>Your Title</TITLE>
  <meta name="google-site-verification" content="here the key string provided by google">
  </HEAD>
  <BODY>

单击谷歌页面中的验证按钮,以便他们重新检查身份验证。就是这样!

于 2017-04-28T13:13:30.133 回答