Wondering if someone can help guide me on how to create a list of URL’s in the Robots template that Search Console has found. I installed a #&*$# Variant app that created a bunch made up URL’s that Google has now seen.
So we have the Robots template:
# 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 %}
but where would I place a list of URL’s in the above template? I understand I’d need to add the following:
User-agent: *
Disallow: /products/my-product-url
Disallow: /products/my-product-url
Disallow: /products/my-product-url
Disallow: /products/my-product-url
Just not sure where to put the list?
REALLY appreciate anyone that can offer some advice, thank you!