Robots.txt & Sitemap Generator

Stateless — no uploads, no server storage. Share via URL.
Back to tools
How to use
  1. Select a preset (recommended) or configure manually.
  2. Click Generate to update outputs.
  3. Copy / Download in your browser only.
  4. Share the URL to share the exact settings.
Presets reload with parameters (stateless).
No protocol. Example: mofidtech.com
Reset
✅ No server storage. Output is generated from query parameters.
# django_urls.py
# Add to your main urls.py

from django.contrib import sitemaps
from django.contrib.sitemaps.views import sitemap
from django.urls import path

# from .django_sitemaps import StaticViewSitemap  # adjust import
# sitemaps_dict = {"static": StaticViewSitemap}

urlpatterns = [
    # ... your urls ...
    # path("sitemap.xml", sitemap, {"sitemaps": sitemaps_dict}, name="django-sitemap"),
]

# Tip: if you use sitemap index, create multiple sitemaps and expose:
# - /sitemap.xml (index) and /sitemap-<section>.xml
Active: django_urls.py
Tip: share this URL to share settings.