KnownByLLM

Setup guide · 5 minutes · Beginner

Install llms.txt on Shopify

Shopify won't let you upload a plain text file directly to the store root, but there are two reliable workarounds.

00

Before you start

You'll need:

The llms.txt file from our checker.

Admin access to your Shopify store.

01

Method 1: theme.liquid template (recommended)

  1. From your Shopify admin, go to Online Store → Themes.
  2. On your live theme, click Actions → Edit code.
  3. Under Templates, click Add a new template.
  4. Choose template type page, format liquid, name it llms.txt.
  5. Paste the llms.txt content into the new file. Remove all Liquid template tags so only plain text remains.
  6. Save. Visit https://yourstore.myshopify.com/pages/llms.txt to confirm. Note: Shopify serves it at /pages/llms.txt, not /llms.txt.

02

Method 2: Files section (limited)

  1. Go to Content → Files in your Shopify admin.
  2. Upload your llms.txt file.
  3. Copy the public URL Shopify generates.
  4. Important: this URL will be on Shopify's CDN, not your store root. AI crawlers may not find it. Method 1 is preferred.

!!

Common pitfalls

  • Root path limitation: Shopify does not allow files at the literal store root. /pages/llms.txt is the closest you can get on most plans.
  • Liquid tags in content: If you paste content with curly braces, Shopify will try to parse them as Liquid. Strip any {{ }} or {% %} patterns.