Shopifyでrobots.txtを編集する

Shopify

はじめに

  • 動作確認中だが、パスワードを外したいので、クロール対象から除外する

手順

  • Sales channels > Online Store > Themesを選択する
  • 「・・・」からEdit codeを選択する。
  • Add a new templateをクリックする
  • robots.txtを追加する
  • robots.txt.liquidの初期設定
# we use Shopify as our ecommerce platform
{%- comment -%}
# Caution! Please read https://help.shopify.com/en/manual/promoting-marketing/seo/editing-robots-txt before proceeding to make changes to this file.
{% endcomment %}
{% for group in robots.default_groups %}
  {{- group.user_agent -}}

  {% for rule in group.rules %}
    {{- rule -}}
  {% endfor %}

  {%- if group.sitemap != blank -%}
    {{ group.sitemap }}
  {%- endif -%}
{% endfor %}
  • 以下のように展開される
# we use Shopify as our ecommerce platform

User-agent: *
Disallow: /a/downloads/-/*
Disallow: /admin
Disallow: /cart
Disallow: /orders
Disallow: /checkouts/
・・・
  • 全ページのクローリングをブロックする場合、以下に書き換える
User-Agent: *
Disallow: /

関連記事

カテゴリー

アーカイブ

Lang »