<?xml version="1.0" encoding="UTF-8"?>
<!--
  網站地圖「總目錄」。

  🔴 2026-09-14 改。原本這個檔是手寫的，裡面只有**首頁一個網址** ——
     80 件物件與所有社區介紹頁，Google 一個都不知道。
     （手寫的檔案不會自己長大，那是它的本質，不是有人偷懶。）

  現在拆成兩份：
    sitemap-static.xml  手寫的固定內容（首頁、門市照片）
    sitemap-live.xml    會自己長大的：每一件上架物件、每一個上架社區

  ⚠️ 為什麼用「總目錄」這種寫法，而不是直接把這個檔改成動態的：
     public/ 底下的檔案會**蓋過**同名的程式路徑，所以 /sitemap.xml 一定是靜態的。
     拆成總目錄是標準做法（sitemap index），Google 完全看得懂。
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://ayonglai.com/sitemap-static.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://ayonglai.com/sitemap-live.xml</loc>
  </sitemap>
  <!--
    2026-09-15 加：學區頁（總覽 1 ＋ 行政區 12 ＋ 學校 212 ＝ 225 個網址）。

    為什麼另外一份、不塞進 sitemap-live：
    物件與社區是「後台一按上架就變」，學區是「一年才可能動一次」。
    兩種更新頻率混在一起，Google 對兩邊的判斷都會失準。
  -->
  <sitemap>
    <loc>https://ayonglai.com/sitemap-zones.xml</loc>
  </sitemap>
</sitemapindex>
