如果你不主动提交你的博客地址给各大搜索引擎,那么即使你站内优化做得再好,搜索引擎根本都不知道你的博客的存在。 为了让Google收录我的博客,就得向Google站长工具提交我们得Sitemap。

Google验证

Google有多种验证方法,这里我选用Html标记,在layout/_partial/head.pug文件内输入<meta name="google-site-verification" content="xxxxxxxxxxxxxxxxxx" />
接着

1
2
hexo c
hexo d

上传完毕点击验证便可验证成功。

Sitemap调用

首先安装sitemap插件:

1
npm install hexo-generator-sitemap --save

接着在_config.yml文件后添加:

1
2
3
4
5
Plugins:
- hexo-generator-sitemap

sitemap:
path: sitemap.xml

重点,把_config.yml中的url改成自己的域名,否者最终提交后会出现站点地图可读取,但存在错误。这样的字眼。

1
url: https://huixueee.com

这时public文件夹内会出现相应的sitemap文件,随后:

1
2
hexo c
hexo d

在Google search console中选择站点地图->添加/测试站点地图,提交后便大功告成。