如何在Gitbook中执行google验证所有权网站,例如,将网站地图上传到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
我进行了大量搜索,但在执行此验证方面没有运气,仅限于如何添加Google Analytics。
提前致谢!
答案 0 :(得分:0)
回答我自己的问题,我找到了一种通过 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>
点击google页面中的验证按钮,以便他们重新检查身份验证。就是这样!