how to created site map ?

Dani AI

Generated

— a few replies suggested using online sitemap builders (, , , ). That is a quick route for small sites. Below is a short, practical checklist and a minimal XML example to make sure the sitemap you create actually helps search engines and avoids common errors.

Decide format and placement: use an XML sitemap for crawlers (HTML sitemaps are for users). Keep in mind the limits: 50,000 URLs or 50MB uncompressed per sitemap — use a sitemap index when you exceed those. Serve the sitemap from your site (usually at the web root) or reference its full URL from robots.txt. Include canonical URLs only, avoid session IDs and parameterized duplicates, and use lastmod in YYYY-MM-DD format if you update it.

Minimal XML example:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://example.com/</loc>
    <lastmod>YYYY-MM-DD</lastmod>
  </url>
</urlset>

Robots.txt line to point crawlers:

Sitemap: https://example.com/sitemap.xml

Validation and maintenance: check the official protocol and use Search Console reporting to submit and monitor your sitemap (Sitemaps protocol, Google Search Central - Sitemaps). If Search Console flags errors, verify each URL returns 200, the sitemap XML parses correctly, and the file isn’t blocked or redirected. Compress large sitemaps as .xml.gz. Use CMS plugins or server-side generation for dynamic sites so the sitemap stays current. Note: sitemaps help discovery but do not guarantee indexing — fix crawl errors and canonical signals first.

Recommended Answers

All 5 Replies

There are several sites out thert that do it for you. Just Google "create sitemap" and you will find more than one.

Site map basically is the list of pages visible to the crawler or the visitor in a website. Mostly it is created in XML. the real method to create it is very lengthy. here is a site on which you can create your site map online
www.xml-sitemaps.com
www.scriptol.com/seo/simple-map.php

thank for info .

If you want XML sitemap for your site, go to xml-sitemaps.com for that.

www.xml-sitemaps.com is good website to create the sitemaps.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.