Robots.txt & Sitemap Generator
Stateless — no uploads, no server storage. Share via URL.
How to use
- Select a preset (recommended) or configure manually.
- Click Generate to update outputs.
- Copy / Download in your browser only.
- Share the URL to share the exact settings.
Presets reload with parameters (stateless).
# 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.