Skip to content

Instantly share code, notes, and snippets.

@amaryfilo
Last active April 29, 2023 07:44
Show Gist options
  • Save amaryfilo/16341b4f425034e1250946ab2bec6763 to your computer and use it in GitHub Desktop.
Save amaryfilo/16341b4f425034e1250946ab2bec6763 to your computer and use it in GitHub Desktop.
Sitemap example
http://mysite.ru/
http://mysite.ru/page/
http://mysite.ru/page1/
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://mysite.ru/</loc>
<lastmod>2021-03-22T12:54:13+03:00</lastmod>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://mysite.ru/category/</loc>
<lastmod>2021-03-22T12:54:13+03:00</lastmod>
<changefreq>hourly</changefreq>
<priority>0.8</priority>
<url>
<loc>http://mysite.ru/category/one</loc>
<lastmod>2021-03-22T12:54:13+03:00</lastmod>
</url>
</url>
<url>
<loc>http://mysite.ru/page/</loc>
<lastmod>2021-03-22T12:54:13+03:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.6</priority>
</url>
</urlset>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>http://mysite.ru/sitemaps/sitemap01.xml</loc>
<lastmod>2021-03-22T12:54:13+03:00</lastmod>
</sitemap>
<sitemap>
<loc>http://mysite.ru/sitemaps/sitemap02.xml</loc>
<lastmod>2021-03-22T12:54:13+03:00</lastmod>
</sitemap>
</sitemapindex>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment