---
title: "Important: #110501 - Slashes in page titles no longer end up in generated slugs"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:important-110501-1787666881"
source: "Changelog/15.0/Important-110501-SlashesInPageTitlesNoLongerEndUpInGeneratedSlugs.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Important: #110501 - Slashes in page titles no longer end up in generated slugs

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

## Description

The `slug` field of the `pages` table is generated from the page
title. Until now, a slash contained in the title was kept as-is.

As a result, a page titled `Terms / Conditions` was given the slug
`/terms-/-conditions`, and a page titled `Support 24/7` was given the
slug `/support-24/7`. The latter additionally introduces a path
segment that does not exist as a page: the URL looks as if the page were a
sub page `7` below a page `/support-24`.

The TCA of `pages` now configures a slug generator replacement that
turns a slash into the fallback character `-`:

**typo3/sysext/core/Configuration/TCA/pages.php**

```php
'slug' => [
    'config' => [
        'type' => 'slug',
        'generatorOptions' => [
            'fields' => ['title'],
            'fieldSeparator' => '/',
            'prefixParentPageSlug' => true,
            'replacements' => [
                '/' => '-',
            ],
        ],
        'fallbackCharacter' => '-',
        // ...
    ],
],
```

The generated slugs therefore change as follows:

| Page title | Slug (before) | Slug (now) |
| --- | --- | --- |
| Terms / Conditions | /terms-/-conditions | /terms-conditions |
| Terms/Conditions | /terms/conditions | /terms-conditions |
| Support 24/7 | /support-24/7 | /support-24-7 |

Every slug generated from now on is affected, no matter whether it is built
when a new page is created or when the slug is recreated from the title in
the page properties. Slugs of existing pages are only changed once they are
regenerated.

Manually entered slugs keep their slashes as before: a slash is a valid
character in a page slug, it separates the path segments of a page.

Sites relying on the previous behaviour can restore it by unsetting the
new option in `Configuration/TCA/Overrides/pages.php`:

**EXT:my_extension/Configuration/TCA/Overrides/pages.php**

```php
<?php

unset($GLOBALS['TCA']['pages']['columns']['slug']['config']['generatorOptions']['replacements']);
```
