---
title: "URLs and redirects: what’s new in TYPO3 v9 and v10"
url: "https://b13.com/knowledge/navigating-page-movements-and-redirects-in-typo3-a-comprehensive-guide"
description: TYPO3 made some important updates to site handling in v9 and v10. We wrote an explainer on new changes, including slug naming and automatic redirects.
image: "https://b13.com/fileadmin/_processed_/0/8/csm_slugs_191-1_26f9e4555c.png"
date: 2020-12-04
modified: 2026-08-19
lastUpdated: 2026-08-19
---

# URLs and redirects: what’s new in TYPO3 v9 and v10

[ SEO ](https://b13.com/knowledge/seo) [ TYPO3 ](https://b13.com/knowledge/typo3) [ TYPO3v10 ](https://b13.com/knowledge/typo3v10)

 Auto-updated redirects: A feature to convince you to upgrade TYPO3
====================================================================

 Cherish your slugs with TYPO3 v10

  08 December 2020

 [ RSS Feed ](https://b13.com/rss.xml)

  ![Three stylized slugs with vibrant colors are depicted against a dark purple background, surrounded by abstract shapes and grass-like elements. The slugs have prominent eyes and elongated bodies, creating a whimsical underwater scene.](https://b13.com/fileadmin/_processed_/e/6/csm_slugs_7303c55513.webp)

Getting in control of your slugs is something not only gardeners should master to protect their lettuce; it’s also something that TYPO3 helps you get control of automatically to create and maintain a good user experience. And in TYPO3 v10, it’s gotten even better.

   First: What is a slug?
------------------------

A slug is the reader-friendly part of the URL that identifies a particular page on your website, and appears after the domain name. For example, in the URL of this blog post, everything after b13.com would be the slug: **“/blog/auto-slug-update-TYPO3-v10”**

Need an upgrade for an easier way to get nice urls out of the box?

 [ Check out our 2nd Opinions and Upgrades Solution ](https://b13.com/services/typo3-upgrade)

   Previously on “TYPO3 Site Handling”
-------------------------------------

If you are still on a TYPO3 v8, and hovering over the proverbial upgrade button—let me tell you one of the reasons why you really should push it.

Before TYPO3 v9, it was common to see query strings in URLs like www.example.com/index.php?id=13. It was hard to get nice readable, so-called “speaking” URLs. The TYPO3 extension RealURL did the trick but had its limitations and didn’t always work as editors expected.

With the introduction of Site Handling and better slug management in TYPO3 v9, it was easier for editors to create user-friendly URLs.

  ![Text box displaying instructions for setting the main URL for a frontend in default language, with an example URL provided: "https://www.example.com/".](https://b13.com/fileadmin/_processed_/6/2/csm_Entry_Point_6ac51d2901.webp)

  It is now possible to set an EntryPoint in the Site Configuration, which functions as the basis for every slug on every page in your website.

  ![Input field for a URL segment labeled "[slug]" with a sample URL "http://example.com/slug-it-like-its-hot" and a note indicating the page will be reachable via that URL.](https://b13.com/fileadmin/_processed_/2/2/csm_URL_Segment_1_cbc58f5d79.webp)

    ![Button options for recalculating the URL segment based on the page title, with accompanying icons for actions.](https://b13.com/fileadmin/_processed_/7/6/csm_URL_segment_2_49911301f9.webp)

If Editors move pages within the page tree, or change the page title, TYPO3 automatically recalculates the slug of a page based on its new position and page title. They can also change slugs manually for individual pages in the page properties settings. That’s as easy as it gets.

  Complementing this feature is the new Redirect Module, where editors can easily set, configure, and manage redirects. Simple but effective and so very handy.

  ![Form fields for configuring URL redirection, including options for source domain, source path, target URL, HTTP status code, and SSL redirect settings.](https://b13.com/fileadmin/_processed_/9/f/csm_Redirect_Module_02c3f5fa6e.webp) [  ](https://b13.com/fileadmin/Blog/Slug_auto_update/Redirect_Module.png)

  With TYPO3 v10, it got even better, and I want to tell you a little bit about that.

   So what’s new in TYPO3 v10?
-----------------------------

TYPO3 v10 introduced a cool new feature that [“automatically updates slugs and redirects when slugs change.”](https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/10.1/Feature-89115-Auto-createRedirectsOnSlugChanges.html)
 If you change a slug and forget to add a redirect, it creates a bad user experience, and it’s bad for SEO. Your site visitors will land on 404 pages, and search engines will remove it from the index. So TYPO3 got smart about this, and it will automatically set a redirect every time you change a slug. No more 404s!

So now, when you change a slug and push the save button, a popup-message in the upper right corner of your backend will appear.

  ![Notification indicating that slugs have been updated and redirects created automatically due to a slug renaming. Options to revert the update or revert redirects only are also presented.](https://b13.com/fileadmin/_processed_/f/4/csm_Popup_f5758e3596.webp)

  TYPO3 does all the work for you.
 You could just close the message and have your new slug with a properly set redirect in place. Alternatively, you can choose from one of two options.

- **“Revert update”**—this will just revert all the changes that were just made, except your manually changed slug. So all the automatically created redirects and slug changes of sub-pages will be reverted.
- **“Revert redirects only”**—this will just revert the automatically set redirects and leaves the automatically set slug changes on the sub-pages unchanged

  ###  Suggestion for developers:

While you are still in your site’s development phase, you don’t need any redirects, so it makes sense to disable that feature until your site is live. This can be done in the config.yaml of your site configuration.

  ###  Code example:

```
1<br></br>2<br></br>3<br></br>4<br></br>5<br></br>6<br></br>7<br></br>8<br></br>9<br></br>10<br></br>11<br></br>12<br></br>13<br></br>14<br></br>15<br></br>
```

```
<span class="hljs-attr">settings:</span><br></br>   <span class="hljs-attr">redirects:</span><br></br>     <span class="hljs-comment"># Automatically update slugs of all sub pages</span><br></br>     <span class="hljs-comment"># (default: true)</span><br></br>     <span class="hljs-attr">autoUpdateSlugs:</span> <span class="hljs-literal">true</span><br></br>     <span class="hljs-comment"># Automatically create redirects for pages with a new slug (works only in LIVE workspace)</span><br></br>     <span class="hljs-comment"># (default: true)</span><br></br>     <span class="hljs-attr">autoCreateRedirects:</span> <span class="hljs-literal">false</span><br></br>     <span class="hljs-comment"># Time To Live in days for redirect records to be created - `0` disables TTL, no expiration</span><br></br>     <span class="hljs-comment"># (default: 0)</span><br></br>     <span class="hljs-attr">redirectTTL:</span> <span class="hljs-number">30</span><br></br>     <span class="hljs-comment"># HTTP status code for the redirect, see</span><br></br>     <span class="hljs-comment"># https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections#Temporary_redirections</span><br></br>     <span class="hljs-comment"># (default: 307)</span><br></br>     <span class="hljs-attr">httpStatusCode:</span> <span class="hljs-number">307</span><br></br>
```

  ###  It keeps getting better

So this is one more reason why we love TYPO3 v10. It may seem a small thing, but it makes the life of editors easier and more fail-safe. You don’t have to change multiple sub-pages manually when you change a parent slug, and this ensures that you don’t accidentally forget to set a necessary redirect.
 I simply love it when TYPO3 does all the work for me and even keeps me from making a fool of myself.
 I’m pretty curious about what new features will make it into the next version, but for now I’m thrilled with the current state.

  We are putting some serious effort into continuously improving TYPO3, and we love that you can, too. #opensourcelove

 [ Read more about that here ](https://b13.com/knowledge/investing-in-typo3-core-development)

  Related Articles
------------------

- ![Cartoon trophy character surrounded by hands giving thumbs up and a heart gesture, set against a gear-patterned background.](https://b13.com/fileadmin/_processed_/f/7/csm_T3ppy_Design_Kit_Headerbild_b51eb9dc31.webp)

    ###  T3ppy Gives TYPO3 a Friendly Face

     06 August 2026 | Florian “Flix” Keitgen

     TYPO3 is powerful—but it doesn’t have to feel impersonal. Meet T3ppy, our friendly companion for the backend.

     [ Read more: T3ppy Gives TYPO3 a Friendly Face ](https://b13.com/knowledge/t3ppy-design-kit)
- ![Gavel labeled "AI" on a circuit-patterned background with yellow stars, symbolizing regulation or legislation related to artificial intelligence in the EU.](https://b13.com/fileadmin/_processed_/1/0/csm_EUAIAct_Headerbild_510724b3de.webp)

    ###  AI Content in TYPO3: Labelling Needs Accountability

     02 August 2026 | Benni Mack

     The EU AI Act brings the origins of AI-generated content into focus. AI Label marks AI-generated and AI-edited content in TYPO3 and records who signed off the published version—for…

     [ Read more: AI Content in TYPO3: Labelling Needs Accountability ](https://b13.com/knowledge/ai-content-in-typo3-labelling-needs-accountability)
- ![A series of stylized figures in various poses, each with a distinctive orange hat, depict a progression from walking to standing still while looking at a phone, set against a purple grid background.](https://b13.com/fileadmin/_processed_/d/7/csm_QueuesDDEV_Headerbild_f640931350.webp)

    ###  Better scalability with decoupled queues: How to set up RabbitMQ with TYPO3

     10 April 2024 | Jochen Roth

     When built-in message transports hit their limits, RabbitMQ can provide TYPO3 with a scalable, robust message queue.

     [ Read more: Better scalability with decoupled queues: How to set up RabbitMQ with TYPO3 ](https://b13.com/knowledge/better-scalability-with-decoupled-queues-how-to-set-up-rabbitmq-with-typo3)
- ![A cartoon character resembling a shield gives a thumbs up in front of a computer interface with various menu options.](https://b13.com/fileadmin/_processed_/e/6/csm_Header_cda1f80173.webp)

    ###  Meet T3ppy: A New Era for Editorial Work in TYPO3

     01 April 2026 | Florian “Flix” Keitgen

     T3ppy and the AiM extension bring AI directly into the TYPO3 backend—enhancing SEO, content quality, and workflows with centralized control.

     [ Read more: Meet T3ppy: A New Era for Editorial Work in TYPO3 ](https://b13.com/knowledge/meet-t3ppy-a-new-era-for-editorial-work-in-typo3)
- ![Retro microphone illustration with a shopping cart icon in the background, symbolizing e-commerce or online shopping.](https://b13.com/fileadmin/_processed_/f/8/csm_Marketplace_Headerbild_ee1575614c.webp)

    ###  Why TYPO3 Needs a Marketplace for Products

     25 March 2026 | Florian “Flix” Keitgen

     A marketplace would make TYPO3 products more discoverable, easier to compare, and benefit both agencies and clients alike.

     [ Read more: Why TYPO3 Needs a Marketplace for Products ](https://b13.com/knowledge/why-typo3-needs-a-marketplace-for-products)
- ![A hand holding a magnifying glass over a laptop screen displaying a webpage with an image and text elements.](https://b13.com/fileadmin/_processed_/e/5/csm_BackendUserSection_Headerbild_6093c842fd.webp)

    ###  Unlocking TYPO3’s Hidden Gem: The Backend User Section (Doktype 6)

     05 March 2026 | David Steeb

     Discover TYPO3’s underrated doktype 6 (Backend User Section) for secure internal previews, editor training, and prototyping. Learn real use cases, common pitfalls like 403 errors…

     [ Read more: Unlocking TYPO3’s Hidden Gem: The Backend User Section (Doktype 6) ](https://b13.com/knowledge/backend-user-section-in-typo3-uses-pitfalls-helper)
- ![Two stylized web page designs featuring a user profile, image placeholders, and text sections, set against a light blue background.](https://b13.com/fileadmin/_processed_/2/0/csm_BackendPreview_Headerbild_b4c5799cfa.webp)

    ###  Backend Previews With a System—Why We Built EXT:backendpreviews

     09 February 2026 | David Steeb

     EXT:backendpreviews brings structure and consistency to content previews in the TYPO3 backend using Fluid templates, layouts, and partials.

     [ Read more: Backend Previews With a System—Why We Built EXT:backendpreviews ](https://b13.com/knowledge/backend-previews-with-a-system-why-we-built-extbackendpreviews)
- ![A human hand shakes a robotic hand against a purple background with heart patterns, symbolizing collaboration between humans and technology.](https://b13.com/fileadmin/_processed_/6/2/csm_AIbotsLoveMarkdown_Headerbild_72fe5820d6.webp)

    ###  The Internet Is No Longer Just for Humans—AI Bots Love Markdown

     28 January 2026 | Benni Mack

     Discover why most web traffic is now automated and how TYPO3’s structured content model prepares websites for humans, editors, and AI systems.

     [ Read more: The Internet Is No Longer Just for Humans—AI Bots Love Markdown ](https://b13.com/knowledge/the-internet-is-no-longer-just-for-humans-ai-bots-love-markdown)
- ![Several colorful web page mockups stacked together, showcasing different layouts and design elements against a purple background.](https://b13.com/fileadmin/_processed_/e/3/csm_CaminoTheme_Headerbild_d082598009.webp)

    ###  Camino—The Need for a Default Theme in TYPO3 Is Real

     27 January 2026 | Benni Mack

     With TYPO3 v14, Camino introduces a default theme that removes friction from first installs. Why this matters—and how TYPO3 laid the groundwork.

     [ Read more: Camino—The Need for a Default Theme in TYPO3 Is Real ](https://b13.com/core-insights/blog/camino-the-need-for-a-default-theme-in-typo3-is-real)
- ![Graphic featuring stylized representations of a tower with the text "T3CON25 Düsseldorf" prominently displayed in the center.](https://b13.com/fileadmin/_processed_/7/b/csm_T3CON2025_Headerbild_fc9c5cc53e.webp)

    ###  T3CON25—One Step Closer to the Future of Content Management

     10 December 2025 | Franzi Töpler

     T3CON25 showcased the future of TYPO3 with insights on TYPO3 v14, AI, digital sovereignty, and open-source solutions driving secure, modern web experiences.

     [ Read more: T3CON25—One Step Closer to the Future of Content Management ](https://b13.com/knowledge/shaping-the-future-of-content-management-t3con25)