主要步骤

  • 添加站点地图 sitemap.xml文件和搜索机器人文件robots.txt
  • 提交站点到搜索引擎(百度和谷歌)
  • hexo针对搜索的优化

添加站点地图 sitemap.xml

1.添加hexo插件

1
2
npm install hexo-generator-sitemap --save
npm install hexo-generator-baidu-sitemap --save

2.修改_config.yml配置

1
2
3
4
sitemap:
path: sitemap.xml
baidusitemap:
path: baidusitemap.xml

搜索机器人文件robots.txt

在source目录下新建robots.txt文件,文件内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
User-agent: *
Allow: /
Allow: /archives/
Allow: /categories/
Allow: /tags/
Allow: /resources/
Disallow: /vendors/
Disallow: /js/
Disallow: /css/
Disallow: /fonts/
Disallow: /vendors/
Disallow: /fancybox/

Sitemap: https://hoxis.github.io/sitemap.xml
Sitemap: https://hoxis.github.io/baidusitemap.xml

提交站点

hexo优化建议

  • 出站链接添加nofollow标签
  • 添加关键字,主要在文章首部地方添加keywords和description
  • 修改博文链接,将hexo默认domain/year/month/day/postname改为title

原文链接:
https://qborfy.com/today/20230131.html