<?xml version="1.0" encoding="UTF-8"?>
<!-- 
  XML声明，指定XML版本和编码方式
  使用UTF-8编码确保正确处理各种语言字符
-->

<!-- 
  sitemap标签是根元素，包含XML命名空间(xmlns)声明
  xmlns属性指向sitemap协议的官方规范
  xmlns:xsi指定XML Schema实例命名空间
  xsi:schemaLocation指定Schema的位置，用于验证文档结构
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">

  <!-- 
    SEO优化技巧:
    1. 包含所有重要页面，但排除登录、注册等非索引页面
    2. 设置正确的优先级(priority)，主页优先级最高
    3. 设置合理的更新频率(changefreq)
    4. 提供最后修改日期(lastmod)，帮助搜索引擎了解内容更新情况
    5. 确保URL使用绝对路径(包含完整域名)
  -->

  <!-- 主页 - 优先级最高 -->
  <url>
    <loc>https://www.hashtagswall.top/</loc>
    <lastmod>2024-11-19</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>

  <!-- 搜索页面 -->
  <url>
    <loc>https://www.hashtagswall.top/search</loc>
    <lastmod>2024-11-19</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>

  <!-- 用户资料页面 - 动态内容，较高更新频率 -->
  <url>
    <loc>https://www.hashtagswall.top/user/profile</loc>
    <lastmod>2024-11-19</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>

  <!-- 规则页面 - 静态内容，较低更新频率 -->
  <url>
    <loc>https://www.hashtagswall.top/rules/terms</loc>
    <lastmod>2024-11-19</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>

  <url>
    <loc>https://www.hashtagswall.top/rules/privacy</loc>
    <lastmod>2024-11-19</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>

  <url>
    <loc>https://www.hashtagswall.top/rules/cookies</loc>
    <lastmod>2024-11-19</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.5</priority>
  </url>

  <!-- 
    注意：排除了以下页面，因为它们不应被搜索引擎索引：
    - 登录页面 (/auth/login)
    - 注册页面 (/register)
    - 测试认证页面 (/test-auth)
    - 错误页面
    
    其他SEO最佳实践：
    1. 定期更新sitemap并重新提交到搜索引擎
    2. 确保robots.txt文件不阻止sitemap访问
    3. 在Google Search Console和其他搜索引擎工具中提交sitemap
    4. 保持lastmod日期的准确性，反映实际内容更新
    5. 对于大型网站，考虑创建sitemap索引文件(sitemap index)
  -->
</urlset> 