Build a Sitemap & robots.txt in 5 Minutes
The two files that tell search engines what to index — and what to leave alone.
Sitemaps and robots.txt control how search engines discover your site. Together they're ~15 lines of config that every healthy website should have.
What robots.txt does
User-agent: *
Allow: /
Disallow: /admin/
Sitemap: https://vizotool.com/sitemap.xmlWhat a sitemap looks like
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://vizotool.com/compress</loc>
<lastmod>2026-08-01</lastmod>
<priority>0.9</priority>
</url>
</urlset>Try the generators
Best practices
- Submit your sitemap in Google Search Console.
- Keep robots.txt short and avoid blocking assets.
- List every indexable URL in the sitemap.
- Update lastmod when content changes.
- Use disallow for admin and private areas only.
robots.txt is a request, not a lock
Robots.txt only stops compliant crawlers. Use noindex or auth for real access control.
FAQ
Frequently asked questions
Generate your sitemap
XML, image and video sitemaps with validation — free and instant.
Amar Lodhi
Founder, Vizo Tool
Written by Amar Lodhi, who builds fast, private, browser-based tools that save people time.
Guides like this, once a week. No spam.
Join readers learning image tricks, dev workflows and SEO — practical, ad-free, unsubscribe anytime.
Related articles
The Complete Guide to Meta Tags for SEO (2026)
Meta tags are the smallest, highest-ROI part of technical SEO. Learn exactly which ones matter and how to generate them perfectly.
JSON-LD Schema Markup: A Beginner's Guide
Structured data unlocks rich results: FAQ dropdowns, breadcrumbs and review stars. Here's how to add JSON-LD the right way.
How to Write a Meta Description That Gets Clicks
Meta descriptions don't affect rankings directly — they affect click-through rate, which absolutely does. Here's the formula.
Guides like this, once a week. No spam.
Join readers learning image tricks, dev workflows and SEO — practical, ad-free, unsubscribe anytime.
Comments0