The best way to understand the structure of the Sitemap is to look at an existing one. Therefore, we have prepared a sample map that you can use for backbone of your personal one. You can copy its code from the lines below, and adjust it to serve your particular needs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>http://www.domain.com /</loc> <lastmod>2017-01-01</lastmod> <changefreq>weekly</changefreq> <priority>0.8</priority> </url> <url> <loc>http://www.domain.com/catalog?item=vacation_hawaii</loc> <changefreq>weekly</changefreq> </url> <url> <loc>http://www.domain.com/catalog?item=vacation_new_zealand</loc> <lastmod>2008-12-23</lastmod> <changefreq>weekly</changefreq> </url> <url> <loc>http://www.domain.com/catalog?item=vacation_newfoundland</loc> <lastmod>2008-12-23T18:00:15+00:00</lastmod> <priority>0.3</priority> </url> <url> <loc>http://www.domain.com/catalog?item=vacation_usa</loc> <lastmod>2008-11-23</lastmod> </url> </urlset> |