{"success":true,"prompt":"/sitemap.xml","response":"A `sitemap.xml` file is essentially a **roadmap** of your website that helps search engines (like Google or Bing) find, crawl, and index all of your content efficiently. \n\nThink of it as a specialized menu designed specifically for bots rather than human visitors.\n\n### 🛠️ Key Components of a Sitemap\nA standard XML sitemap uses specific tags to provide metadata about your URLs:\n\n* **`<urlset>`**: The standard container that wraps the entire file.\n* **`<url>`**: The parent tag for each individual page entry.\n* **`<loc>`**: The full URL of the page (e.g., `https://example.com/blog`).\n* **`<lastmod>`**: The date the page was last updated.\n* **`<changefreq>`**: How often the page is likely to change (e.g., daily, monthly).\n* **`<priority>`**: The importance of this URL relative to other URLs on your site (ranging from 0.0 to 1.0).\n\n---\n\n### 📝 Basic Example Structure\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-14</lastmod>\n      <changefreq>daily</changefreq>\n      <priority>1.0</priority>\n   </url>\n   <url>\n      <loc>https://www.example.com/about</loc>\n      <lastmod>2026-03-10</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>0.8</priority>\n   </url>\n</urlset>\n```\n\n---\n\n### 🚀 Why do you need one?\nWhile search engines can find pages without a sitemap, having one is highly recommended if:\n1.  **Your site is large:** It ensures bots don't miss new or updated pages deep in your architecture.\n2.  **Poor internal linking:** If some pages aren't linked well to each other, a sitemap acts as a direct link.\n3.  **New websites:** Newer sites have few external backlinks, making it harder for Google to discover them naturally.\n4.  **Rich Media:** There are specialized sitemaps for **Video**, **Images**, and **News** that help you appear in specific search results.\n\n---\n\n### 📍 Where to find or put it?\n* **Location:** Usually located at the root of your domain: `yourdomain.com/sitemap.xml`.\n* **Robots.txt:** You should always list your sitemap location in your `robots.txt` file so crawlers find it immediately:\n    > `Sitemap: https://www.example.com/sitemap.xml`\n* **Search Console:** You should manually submit your sitemap URL to **Google Search Console** or **Bing Webmaster Tools** to track indexing status.\n\nAre you looking to generate a sitemap for a specific platform like WordPress or Shopify, or are you trying to troubleshoot an error in an existing one?"}