Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What should be the value of xmlns attribute for urlset tag in the sitemap?

Tags:

xml

seo

sitemap

My sitemap looks something like this:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> 
   <url>
      <loc>http://www.example.com/page1.html</loc> 
   </url>
</urlset>

In the most examples in the internet urlset tag has a xmlns attribute with this value http://www.sitemaps.org/schemas/sitemap/0.9. My question is, what that value comes from?

What exactly should it be?

  1. The path of where my website sitemap file is located?
  2. Literally http://www.sitemaps.org/schemas/sitemap/0.9 ?
like image 243
Martin AJ Avatar asked Oct 31 '25 19:10

Martin AJ


1 Answers

The Sitemap protocol defines the XML schema which has the namespace http://www.sitemaps.org/schemas/sitemap/0.9.

By using

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

you convey that the urlset element (and its descendants, unless they have a different namespace) should be interpreted according to this Sitemap protocol.

Namespaces help to avoid name collisions. There is no central authority that controls which element names can be used in XML, so any other XML schema may specify an element named urlset, too. Namespaces also allow you to mix elements from different XML schemas, e.g., for extending the Sitemaps protocol.

tl;dr: You have to provide (exactly!) this namespace value, otherwise it wouldn’t be a sitemap as defined by the Sitemap Protocol.

like image 98
unor Avatar answered Nov 04 '25 06:11

unor