{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're interested in how a **Sitemap** works! In the world of SEO and web development, a `sitemap.xml` file acts like a GPS for search engine crawlers (like Googlebot), telling them exactly where to find the content on your site.\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 read this file to more intelligently crawl your site.\n\n\n\n### Why do you need one?\nWhile search engines can usually find most of your content if your pages are properly linked, a sitemap is essential if:\n* **Your site is large:** Crawlers might overlook new or recently updated pages.\n* **Your site is new:** It may have few external links pointing to it.\n* **You have \"orphaned\" pages:** Pages that aren't linked to by any other page.\n* **You use rich media:** It helps search engines index video and image content more effectively.\n\n---\n\n### A Basic Example\nHere is what a standard entry in a `sitemap.xml` looks like:\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/page1</loc>\n    <lastmod>2026-04-15</lastmod>\n    <changefreq>monthly</changefreq>\n    <priority>0.8</priority>\n  </url>\n</urlset>\n```\n\n### Key Components\n| Tag | Description |\n| :--- | :--- |\n| `<loc>` | The absolute **URL** of the page. |\n| `<lastmod>` | The date the file was **last modified**. |\n| `<changefreq>` | How frequently the page is likely to change (e.g., daily, weekly). |\n| `<priority>` | The priority of this URL relative to other URLs on your site (ranges from `0.0` to `1.0`). |\n\n---\n\n### How to use it\n1.  **Generate:** Use a plugin (like Yoast for WordPress) or an online generator.\n2.  **Upload:** Place the file in the root directory of your server (e.g., `example.com/sitemap.xml`).\n3.  **Submit:** Tell search engines about it via **Google Search Console** or **Bing Webmaster Tools**.\n\nAre you looking to generate a sitemap for a specific website, or are you trying to troubleshoot why one isn't working?"}