| « Sitemap tags | Sitemap index files » |
Entity escaping
Your Sitemap file must be UTF-8 encoded (you can generally do this when you save the file). As with all XML files, any data values (including URLs) must use entity escape codes for the characters listed in the table below.
| Character | Escape Code | |
|---|---|---|
| Ampersand | & | & |
| Single Quote | ' | ' |
| Double Quote | " | " |
| Greater Than | > | > |
| Less Than | < | < |
In addition, all URLs (including the URL of your Sitemap) must be URL-escaped and encoded for readability by the web server on which they are located. However, if you are using any sort of script, tool, or log file to generate your URLs (anything except typing them in by hand), this is usually already done for you. Please check to make sure that your URLs follow the RFC-3986 standard for URIs, the RFC-3987 standard for IRIs, and the XML standard.
Below is an example of a URL that uses a non-ASCII character (ü), as well as a character that requires entity escaping (&):
Code:
http://www.example.com/ümlat.html&q=name |
Below is that same URL, ISO-8859-1 encoded (for hosting on a server that uses that encoding) and URL escaped:
Code:
http://www.example.com/%FCmlat.html&q=name |
Below is that same URL, UTF-8 encoded (for hosting on a server that uses that encoding) and URL escaped:
Code:
http://www.example.com/%C3%BCmlat.html&q=name |
Below is that same URL, but also entity escaped:
Code:
http://www.example.com/%C3%BCmlat.html&q=name |
Sample XML Sitemap
The following example shows a Sitemap in XML format. The Sitemap in the example contains a small number of URLs, each using a different set of optional parameters.
XML:
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<url> | |
<loc>http://www.example.com/</loc> | |
<lastmod>2005-01-01</lastmod> | |
<changefreq>monthly</changefreq> | |
<priority>0.8</priority> | |
</url> | |
<url> | |
<loc>http://www.example.com/catalog?item=12&desc=vacation_hawaii</loc> | |
<changefreq>weekly</changefreq> | |
</url> | |
<url> | |
<loc>http://www.example.com/catalog?item=73&desc=vacation_new_zealand</loc> | |
<lastmod>2004-12-23</lastmod> | |
<changefreq>weekly</changefreq> | |
</url> | |
<url> | |
<loc>http://www.example.com/catalog?item=74&desc=vacation_newfoundland</loc> | |
<lastmod>2004-12-23T18:00:15+00:00</lastmod> | |
<priority>0.3</priority> | |
</url> | |
<url> | |
<loc>http://www.example.com/catalog?item=83&desc=vacation_usa</loc> | |
<lastmod>2004-11-23</lastmod> | |
</url> | |
</urlset> |
1 comment
This post has 9 feedbacks awaiting moderation...