Sitemap

Overview

The sitemap provides an architecture of a website to help users and search engines navigate its structure. This XML sitemap at Axiologik outlines all the links present throughout the site for ease of access and indexing.

Purpose

  • Improves SEO: Helps search engines crawl the site more effectively.
  • User navigation: Assists users in finding desired pages.

XML Sitemap Structure

The sitemap utilizes the XML format, containing key elements like:

  • <urlset>: The main container for all URLs.
  • <url>: Individual URL entries.
  • <loc>: The URL of the page.
  • <lastmod>: Indicates the last modified date.
  • <changefreq>: Suggests how frequently the page is likely to change.
  • <priority>: Indicates the importance of the page relative to other URLs.

Example Entry

<url>
  <loc>https://axiologik.com/</loc>
  <lastmod>2023-10-01</lastmod>
  <changefreq>daily</changefreq>
  <priority>1.0</priority>
</url>