# 让搜索引擎收录网站

# 1. Google搜索

# 1.1. 收录

  1. 进入控制台 https://www.google.com/webmasters/tools/home?hl=zh-CN (opens new window)

  2. 添加域名并验证

# 1.2. 站点地图

vue-press:

  • 依赖

    npm i -D vuepress-plugin-sitemap
    
    # "vuepress-plugin-sitemap": "^2.3.1",
    
  • 配置

    // docs/.vuepress/config.js
    module.exports = {
      plugins: [
        // '@vuepress/plugin-nprogress',
    
        [
          'vuepress-plugin-sitemap',
          {
            hostname: 'https://forwardnow.github.io'
          }
        ]
    
      ]
    }
    
  • 编译生成 docs/.vuepress/dist/sitemap.xml

# 2. 参考

本章目录