Features
6. Sitemap.xml
Configure the website sitemap file sitemap.xml.
Introduction
/sitemap.xml
is a crucial file submitted to search engines, letting them clearly know which pages on our site are accessible.
Configuration
The sitemap is automatically generated based on your website's content structure. It includes:
- All pages from the content directory
- All documentation pages
- All blog posts
View Sitemap
You can view your sitemap at:
https://your-domain.com/sitemap.xml
The sitemap will include:
- URLs of all your pages
- Last modification dates
- Change frequency
- Priority levels
Example Output
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://saas-fast.ducafecat.com/</loc>
<lastmod>2024-01-15</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://saas-fast.ducafecat.com/docs</loc>
<lastmod>2024-01-15</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<!-- More URLs... -->
</urlset>
Submit to Search Engines
Remember to submit your sitemap URL to:
- Google Search Console
- Bing Webmaster Tools
- Other search engines you want to target
This helps search engines discover and index your content more efficiently.
end