<?xml version="1.0" encoding="UTF-8"?>
<!--
  站点地图索引：把分散在前端静态文件和后端接口里的 sitemap 串在一起。
  提交给 Google Search Console / 百度搜索资源平台时，提交本文件即可。

  - sitemap.xml                              前端静态页面（首页、航图、频道列表、条款页等）
  - api/maps/sitemap-airports.xml            机场详情页 + 各省索引页，由 fly_jwt 的 SeoController 动态生成（近千条）
  - v2/channel/seo/sitemap-channel.xml       频道视频 / Shorts / 图文详情页，由 fly_channel 的 ChannelSeoController 动态生成（约 740 条）

  两个后端 sitemap 的路径前缀不同是因为 nginx 分别把 /api 反代到 fly_jwt、/v2 反代到 fly_channel。
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://www.piaviation.com/sitemap.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://www.piaviation.com/api/maps/sitemap-airports.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://www.piaviation.com/v2/channel/seo/sitemap-channel.xml</loc>
  </sitemap>
</sitemapindex>
