---
title: "Feature: #93048 - Introduce Backend URL rewrites"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:changelog-feature-93048-introducebackendurlrewrites"
source: "Changelog/11.0/Feature-93048-IntroduceBackendURLRewrites.rst"
typo3-version: "11.0"
typo3-major: 11
type: "feature"
issue: 93048
forge: "https://forge.typo3.org/issues/93048"
tags: ["Backend", "ext:backend"]
rendered: "2026-09-24T21:45:06+00:00"
---

# Feature: #93048 - Introduce Backend URL rewrites {#changelog-feature-93048-introducebackendurlrewrites}

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

## Description {#description}

The TYPO3 backend does now feature URL rewrites which allows
the use of human readable urls. This will enable TYPO3
to introduce deep-linking functionality in the future. By
that, it will be possible to share URLs, which directly link
to a specific module or even a specific record, in the backend.

### Example {#example}

```none
// Before
https://example.com/typo3/index.php?route=%2Fmain

// After
https://example.com/typo3/main
```

This feature is enabled by default and will work as soon as
the necessary rewrite rule is added in the webserver configuration.
See: [Breaking: #93048 - Backend URL rewrites](https://docs.typo3.org/permalink/changelog:changelog-breaking-93048-backendurlrewrites) for more
details about this.

To generate human readable urls for custom backend modules and routes,
extension authors can use the public `UriBuilder` API.

## Impact {#impact}

TYPO3 now builds human readable urls for the backend by default.
Extension authors also automatically benefit form this when
using the public `UriBuilder` API.

## Related {#related}

-   [Breaking: #93048 - Backend URL rewrites](https://docs.typo3.org/permalink/changelog:changelog-breaking-93048-backendurlrewrites)
