Create XML sitemaps by manually entering your URLs for better search engine indexing
Diving into the world of SEO can feel overwhelming, especially when things get technical. But if you want your website to shine in search results, you absolutely can't skip over sitemaps—especially the XML kind. This guide explains everything you need to know about creating and maintaining XML sitemaps for better search engine visibility.
A sitemap is a 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.
Benefits of using manually created sitemaps:
After generating your sitemap, save it as sitemap.xml
in your website's root directory and submit it through Google Search Console.
Our manual sitemap generator has smart features to make creating a sitemap as easy as possible:
These features make it easy to quickly generate a sitemap from various sources, whether you're working with a structured URL list or extracting URLs from documentation or content pages.
An XML sitemap is a structured file that lists out the key pages on your website. It's how you make sure search engines aren't wandering your site in the dark—they get a clear roadmap! By serving up all your vital URLs, you help bots quickly find and index your content, especially those well-buried pages.
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.example.com/</loc>
<lastmod>2025-06-30</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.example.com/about</loc>
<lastmod>2025-05-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
Creating your sitemap manually gives you complete control over your SEO strategy. You get to decide exactly which URLs to include, how they're prioritized, and how frequently they should be revisited by search engines. Manual creation is ideal when:
With our manual sitemap generator tool, you can create professional XML sitemaps without any coding knowledge or server-side processing.
Let yourself pick and filter which URLs are included or skipped—think canonical pages only, skip the admin dashboard!
Allow tagging of URLs with <priority>
and <changefreq>
based on business logic or content type.
Make sure you have logs or dashboards showing what's included, skipped, or flagged as an error—broken links, inaccessible pages, or redirects.
While XML is the standard, you might want to support other data structures, like JSON or a plain text summary for debugging.
Set up triggers to regenerate the sitemap whenever site content changes, such as after publishing a new blog post or product.
Make a list of all important pages on your website that should be included in your sitemap. Consider your site structure and user journeys.
Gather URLs from your site's content management system, database, or manually compile them. Focus on canonical URLs and avoid duplicates, search results, or temporary pages.
For each URL, determine details like last modified date, frequency of updates, and priority. These help search engines understand how to crawl your site.
Format each URL entry with required XML tags. Here's a classic structure:
<url>
<loc>https://www.example.com/page</loc>
<lastmod>2025-06-30</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
Aggregate these into one <urlset>
element, with all the necessary schema declarations at the top.
Save your freshly minted sitemap.xml to the site's root. Set server permissions so it's publicly accessible.
Submit your sitemap to Google Search Console, Bing Webmaster Tools, and any other relevant search engines to ensure they find and use your sitemap.
Open the XML file in your browser and a validator to check for structure and errors. Make sure all URLs are accessible and return proper status codes.
If important sections aren't being included, review your URL collection process and make sure all site sections are represented.
Check that your priority and update frequency fields reflect your content strategy, not just defaults.
Ensure your sitemap file is readable by the world and not blocked by robots.txt.
For sites with many pages, consider using a spreadsheet to track URLs before pasting them into the generator.
about-us
or /products/item-1
)https://example.com/contact
)A manually created XML sitemap is a powerful way to communicate directly with search engines about your website's structure and content priorities. While it takes some effort to create and maintain, the control and precision it offers can significantly improve your site's visibility in search results. Our Manual XML Sitemap Generator makes this process easy, allowing you to focus on your content strategy while we handle the technical XML formatting.