Questions tagged [xml-sitemap]

An XML sitemap is an XML file where you provide information about the pages, videos, and other files on your site, and the relationships between them. Questions related to how XML sitemaps affect SEO are off-topic for Stack Overflow. They may be on-topic at the Webmasters Stack Exchange.

An XML sitemap is an XML file where you provide information about the pages, videos, and other files on your site, and the relationships between them. Search engines like Google read this file to more intelligently crawl your site. A sitemap tells Google which pages and files you think are important in your site, and also provides valuable information about these files: for example, for pages, when the page was last updated, how often the page is changed, and any alternate language versions of a page.

The standard for the protocol can be found at https://www.sitemaps.org/

Here is the format of a basic XML sitemap:

<?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>2020-01-01</lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.8</priority>
   </url>
</urlset> 
216 questions
-1
votes
1 answer

how to add extra field into the drupal xml sitemap

any one help me about this issue. Actually xmlsitemap module used into my drupal project. But I want to add another extra field into the sitemap xml file. Just like description.
-2
votes
2 answers

Why is the sitemap not Fetch in search console?

I have a site that is written with php and now when I try to connect the site map to the search console, it gives a coudnt fetch error. The site is already WordPress and the site map itself has no problem. site address site map
-2
votes
1 answer

Sitemap for a member based website

I would like to have something cleared up. On a member based website, there are certain pages that can only be accessed by a particular member; such as edit profile, edit password..etc. My question is, do those pages need to be included in the…
-3
votes
3 answers

Google sitemap error ParseEntityRef: no name on opencart 3

It's my first time using opencart and Google sitemap Here is my error Sitemap URL https://www.startpc.ro/index.php?route=extension/feed/google_sitemap Character Set Sitemap is valid No Warnings - Errors [68] xmlParseEntityRef: no name on…
-3
votes
1 answer

Kentico v6 questions - Regarding 301 redirect, robots file & XML Sitemap

I have Redirect non-www to www code ready but where to update the same in kentico v6? How to update robots.txt file in kentico v6? How can i add xml sitemap in kentico v6?
-3
votes
1 answer

Diffeerent sitemap for each language

I have developed multilingual site, now i need XML sitemap for each language. In English it is working fine with all content types but in another languages it no links are shown except main URL. How can i achieve all content links in different…
1 2 3
14
15