{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're interested in how a **sitemap.xml** file works! Think of it as a \"GPS for search engines.\" Instead of a crawler like Googlebot wandering aimlessly through your site, the sitemap gives it a clear list of every page you want indexed.\n\n---\n\n## What is a Sitemap?\nA sitemap is a file where you provide information about the pages, videos, and other files on your site, and the relationships between them. Search engines like Google, Bing, and DuckDuckGo read this file to more intelligently crawl your site.\n\n### Key Components of the XML\nA standard entry in a sitemap usually looks like this:\n\n```xml\n<url>\n  <loc>https://www.example.com/page</loc>\n  <lastmod>2026-04-11</lastmod>\n  <changefreq>monthly</changefreq>\n  <priority>0.8</priority>\n</url>\n```\n\n* **`<loc>`:** The absolute URL of the page.\n* **`<lastmod>`:** The date the file was last modified (helps bots know if they need to re-crawl).\n* **`<changefreq>`:** How often the page is likely to change (e.g., daily, weekly).\n* **`<priority>`:** The importance of this URL relative to others on your site (ranges from 0.0 to 1.0).\n\n---\n\n## Why Do You Need One?\nWhile search engines *can* find your pages through internal links, a sitemap is crucial if:\n1.  **Your site is really large:** Crawlers might miss new or recently updated pages.\n2.  **You have a \"shallow\" linking structure:** Pages that aren't linked to often are harder to find.\n3.  **Your site is new:** You don't have many external backlinks yet.\n4.  **You use rich media:** It helps Google understand video and image content better.\n\n\n\n---\n\n## How to Deploy It\n1.  **Generate it:** Use a plugin (like Yoast for WordPress) or an online generator.\n2.  **Upload it:** Place it in your root directory (e.g., `example.com/sitemap.xml`).\n3.  **Submit it:** Go to **Google Search Console** or **Bing Webmaster Tools** and paste the URL so they know exactly where to look.\n\nAre you looking to generate a sitemap for a specific platform, or are you troubleshooting an error with an existing one?"}