SEO対策

2022.10.10

sitemapの提出

プラグインのインストール

npm install --save gatsby-plugin-sitemap

yarn add gatsby-plugin-sitemap

gatsby-config.jsにプラグインを追加

module.exports = {
  siteMetadata: {
    // If you didn't use the resolveSiteUrl option this needs to be set
    siteUrl: `https://www.example.com`,
  },
  plugins: [`gatsby-plugin-sitemap`]
}

以下のコマンドすると、publicフォルダ内にsitemapフォルダが作成される。

gatsby build

Google Search Consoleに以下のsitemap URLを追加 https://example.com/sitemap/sitemap-0.xml

ステータスが「成功しました」と表示されたらOK。

  • 参考文献

[https://www.gatsbyjs.com/plugins/gatsby-plugin-sitemap/]

robot.txtの作成

プラグインをインストール

yarn add gatsby-plugin-robots-txt

npm install --save gatsby-plugin-robots-txt

gatsby-config.jsにプラグインを追加

module.exports = {
  siteMetadata: {
    siteUrl: 'https://www.example.com'
  },
  plugins: ['gatsby-plugin-robots-txt']
}
  • 参考文献

[https://www.gatsbyjs.com/plugins/gatsby-plugin-robots-txt/]

©まっしろな雲 All Rights Reserved.