Active
Sitemap Configuration
Configure how your sitemaps are generated, what URLs are included, and how they are submitted to search engines.
General Settings
Basic configuration for your sitemap generation.
Relative path from your server root.
Generation Rules
Control limits and priorities for URL indexing.
Files will be split automatically if exceeded.
URL Exclusion Patterns
Regex patterns for URLs to ignore during crawling.
Supports Regex syntax. Lines starting with # are comments.
Submission & Integrations
Automatically ping search engines and manage integrations.
Google Search Console
Auto-submit sitemap on updates.
Bing Webmaster
Notify Bing of sitemap changes.
Yandex Indexing
Submit to Yandex catalog.
GZIP Compression
Compress sitemap files to save bandwidth.
Webhook Notification
Send payload to endpoint on completion.
Configuration Preview
JSON representation of your current settings.
{
"project": "production-site-v2",
"baseUrl": "https://www.example.com",
"format": "xml",
"output": "/public/sitemap.xml",
"rules": {
"maxUrls": 50000,
"priority": 0.5,
"frequency": "daily",
"includeAssets": ["css", "js", "images"]
},
"exclusions": [
"/wp-admin/",
"/cache/",
"/tmp/",
"\\.php$",
"\?utm_source=",
"\?session_id="
],
"integrations": {
"google": true,
"bing": false,
"yandex": false,
"gzip": true,
"webhook": true
}
}