📜  https: www.mykemertours.com en sitemap.xml (1)

📅  最后修改于: 2023-12-03 15:15:45.538000             🧑  作者: Mango

介绍

本文讲解网站 https://www.mykemertours.com 的 sitemap.xml 文件,该文件包含了网站中所有可被搜索引擎爬取的页面的信息。下面将按照 Sitemap 标准文档的格式解释该文件。

Sitemap 标准

Sitemap 是一种网站地图文件,是指包含一个网站中所有可被搜索引擎爬取的页面的信息的 XML 文件。

Sitemap 文件必须遵循 Sitemap 标准文档中定义的格式,同时需要满足以下要求:

  • 所有 URL 必须使用 <loc> 标签进行描述。
  • 要求 sitemap.xml 文件必须存储在网站根目录下。
  • 首先要在 robots.txt 文件中声明该文件的存在。
https://www.mykemertours.com/sitemap.xml

该网站的 sitemap.xml 文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://www.mykemertours.com/</loc>
    <lastmod>2021-06-21T17:05:13+00:00</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.00</priority>
  </url>
  <url>
    <loc>https://www.mykemertours.com/about-us/</loc>
    <lastmod>2021-06-21T17:05:13+00:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.80</priority>
  </url>
  <url>
    <loc>https://www.mykemertours.com/destinations/</loc>
    <lastmod>2021-06-21T17:05:13+00:00</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.80</priority>
  </url>
  <url>
    <loc>https://www.mykemertours.com/contact-us/</loc>
    <lastmod>2021-06-21T17:05:13+00:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.80</priority>
  </url>
  <url>
    <loc>https://www.mykemertours.com/sample-page/</loc>
    <lastmod>2021-06-21T17:05:13+00:00</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.50</priority>
  </url>
  <url>
    <loc>https://www.mykemertours.com/privacy-policy/</loc>
    <lastmod>2021-06-21T17:05:13+00:00</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.50</priority>
  </url>
</urlset>

该文件描述了该网站中的 6 个页面及其相关信息,包括页面 URL、上次修改时间、爬取频率和重要程度。根据 Sitemap 标准,搜索引擎可以利用该文件更好地抓取网站数据,提高搜索效果。

参考