---
title: "Feature: #88147 - Add possibility to configure the path to sitemap xslFile"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-88147"
source: "Changelog/10.3/Feature-88147-AddPossibilityToConfigureThePathToSitemapXslFile.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #88147 - Add possibility to configure the path to sitemap xslFile

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

## Description

The xsl file to create a layout for a XML sitemap can now be configured on three levels:

1.  for all sitemaps:

    ```typoscript
    plugin.tx_seo.config.xslFile = EXT:myext/Resources/Public/CSS/mySite.xsl
    ```
1.  for all sitemaps of a certain sitemapType:

    ```typoscript
    plugin.tx_seo.config.<sitemapType>.sitemaps.xslFile = EXT:myext/Resources/Public/CSS/mySite.xsl
    ```
1.  for a specific sitemap:

    ```typoscript
    plugin.tx_seo.config.<sitemapType>.sitemaps.<sitemap>.config.xslFile = EXT:myext/Resources/Public/CSS/mySite.xsl
    ```

## Impact

The value is inherited until it is overwritten.

If no value is specified at all, `EXT:seo/Resources/Public/CSS/Sitemap.xsl` is used as default like before.
