---
title: "Feature: #94206 - Add excludePagesRecursive option to XML sitemap generation"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-94206"
source: "Changelog/11.3/Feature-94206-AddExcludePagesRecursiveOptionToSitemapGeneration.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #94206 - Add excludePagesRecursive option to XML sitemap generation

See [forge#94206](https://forge.typo3.org/issues/94206)

## Description

With this option you can exclude pages recursively in the XML sitemap:

```typoscript
plugin.tx_seo {
    config {
        xmlSitemap {
            sitemaps {
                pages {
                    config {
                        # comma-separated list of page UIDs which should be excluded recursively
                        excludePagesRecursive = 2,3
                    }
                }
            }
        }
    }
}
```

## Impact

The new option enables integrators to easily exclude pages recursively in the XML sitemap
