{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're looking for information on a **sitemap.xml** file. In the world of SEO and web development, this is essentially the \"map\" that tells search engines which pages on your site are important and how to find them.\n\n---\n\n### What is a Sitemap?\nA sitemap is an XML file that lists the URLs for a website. It allows search engines (like Google or Bing) to crawl the site more intelligently. While search engines can usually find your pages via internal links, a sitemap ensures they don't miss anything—especially if your site is large, new, or has a complex archive.\n\n### Key Components of the XML\nA standard sitemap entry 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 full URL of the page.\n* **`<lastmod>`:** When the page was last updated (helps bots know if they need to re-crawl).\n* **`<changefreq>`:** How often the page is likely to change.\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### Why do you need one?\n1.  **Faster Indexing:** Helps new sites or pages get discovered quickly.\n2.  **Better Crawling:** Directs bots to pages that might not be easily accessible through your main navigation.\n3.  **Content Updates:** Informs search engines when you've updated existing content.\n\n### Where to find it?\nMost websites host their sitemap at the root directory: `https://www.yourdomain.com/sitemap.xml`. You can also check a site's **robots.txt** file, as it usually contains a link to the sitemap location.\n\nAre you trying to generate one for your own site, or are you troubleshooting why a specific sitemap isn't being read by Google Search Console?"}