Site cover image

Site icon imagehtrkwn.dat

Just a htrkwn's personal hobby scrapbook.

🙌vercelでホストしてるサイトのHeaderをvercel.jsonで設定できた

自サイトのネットワーク見てたら X-Robots-Tag に、noindex, nofollow がなかったことに気付き(あまり拾われたくはないサイトだった)これらを設定したかったんだけど方法がわからなかったので調べたら、プロジェクトルートにvercel.jsonを置くことで設定することが出来たらしい。

{
  "headers": [
    {
      "source": "/(.*)",
      "headers": [
        {
          "key": "X-Robots-Tag",
          "value": "noindex, nofollow, noarchive"
        }
      ]
    }
  ]
}

robots.txtをHugoのプロジェクトで置きたかったらlayoutsディレクトリのなかに置く。

robots.txt template lookup order

You may overwrite the internal template with a custom template. Hugo selects the template using this lookup order:

  1. /layouts/robots.txt
  2. /themes/<THEME>/layouts/robots.txt

ひとまずこれで様子を見ます。