---
title: "Breaking: #72474 - RequestHandler only works with Routes"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-72474"
source: "Changelog/8.0/Breaking-72474-RequestHandlerOnlyWorksWithRoutes.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Breaking: #72474 - RequestHandler only works with Routes

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

## Description

The default backend RequestHandler had a fallback that triggered the backend initialization without having
a `&route=` request parameter set. This was used for the transition when deprecating the traditional entry-scripts. The
logic has been removed.

## Impact

Any regular backend request (non-module and non-AJAX) will now require a
`&route=` request parameter, otherwise will fallback to the default route
(login) when not provided.

## Migration

For all backend-related calls, either use a custom RequestHandler or switch to Backend Routing.
