{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're interested in how a **sitemap.xml** file works! Think of it as a \"digital blueprint\" for search engines. While a website’s navigation is built for humans, the sitemap is built specifically for crawlers like Googlebot to ensure they don't miss any of your important pages.\n\n---\n\n## What is a Sitemap?\nA sitemap is an XML file that lists every URL on a website. It provides essential metadata about each page, such as:\n* **When it was last updated.**\n* **How often it changes.**\n* **How important it is relative to other pages on the site.**\n\n\n\n---\n\n## Why is it Important?\nWithout a sitemap, search engines have to rely purely on links to find your content. A sitemap is crucial if:\n* **You have a massive site:** It helps crawlers prioritize deep pages.\n* **Your site is new:** External links to your content might not exist yet.\n* **You use rich media:** Sitemaps can provide specific details about video and image content.\n\n---\n\n## Basic Structure of a Sitemap\nA standard `sitemap.xml` follows a specific schema. Here is a simplified example:\n\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n   <url>\n      <loc>https://www.example.com/</loc>\n      <lastmod>2026-04-06</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>1.0</priority>\n   </url>\n   <url>\n      <loc>https://www.example.com/blog</loc>\n      <lastmod>2026-04-05</lastmod>\n      <changefreq>daily</changefreq>\n      <priority>0.8</priority>\n   </url>\n</urlset>\n```\n\n---\n\n## How to use it\n1.  **Generate:** Most CMS platforms (like WordPress or Shopify) create these automatically.\n2.  **Upload:** Place it in your root directory (e.g., `example.com/sitemap.xml`).\n3.  **Submit:** Tell Google about it via the **Google Search Console** or Bing via **Bing Webmaster Tools**.\n4.  **Reference:** Add a line to your `robots.txt` file so crawlers find it instantly:\n    > `Sitemap: https://www.example.com/sitemap.xml`\n\nAre you looking to generate a sitemap for a specific website, or are you trying to troubleshoot an error with an existing one?"}