Project

General

Profile

Actions

Feature #91776

closed

Use the pid field to associate a redirect with the page it was created for

Added by Oliver Eglseder over 3 years ago. Updated over 2 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Link Handling, Site Handling & Routing
Target version:
Start date:
2020-07-09
Due date:
% Done:

100%

Estimated time:
PHP Version:
Tags:
site, sys_redirect
Complexity:
no-brainer
Sprint Focus:

Description

I have a task which requires me to associate generated redirects (through slug changes) with the page that triggered the generation.
Example:
  • I have the page tree
    New TYPO3 site
     `- [1] Root Page     (slug "/")
         |- [2] Something (slug "/somehting")
         `- [3] Else      (slug "/else")
    
  • I change the slug of "[1] Root Page" to "start", which updates all slugs recursively
    New TYPO3 site
     `- [1] Root Page     (slug "/start")
         |- [2] Something (slug "/start/somehting")
         `- [3] Else      (slug "/start/else")
    
  • This action will create 3 redirects
    uid pid source_host source_path target
    1 0 * / /start
    2 0 * /somehting /start/somehting
    3 0 * /else /start/else
  • I would like to have these redirects associated with the page that got changed and triggered the creation of these redirects.
    uid pid source_host source_path target
    1 1 * / /start
    2 1 * /somehting /start/somehting
    3 1 * /else /start/else
  • changing the slug of the page "[2] Something" to "something" (correcting the typo) would therefore create a redirect with PID 2
    uid pid source_host source_path target
    4 2 * /start/somehting /start/something
Implications:
  • In perspective this could be also used to show editors all redirect sources to a page (a list of all URLs that are redirected to the selected page)
  • Should be fully backwards compatible. I did not find an obvious reason to keep them all on pid 0.
  • It makes it easier for EXT:in2publish_core to find redirects for pages and publish pages including their redirects.

Related issues 4 (0 open4 closed)

Related to TYPO3 Core - Task #99044: Ensure auto-created redirect are stored on connected site rootClosedStefan Bürk2022-11-10

Actions
Related to TYPO3 Core - Feature #99834: PSR-14 events around auto create redirects are use full for several use-casesClosedStefan Bürk2023-02-05

Actions
Related to TYPO3 Core - Bug #99697: Copying a page with existing sys_redirect throws errorClosed2023-01-24

Actions
Related to TYPO3 Core - Bug #102556: Editor is unable to delete a page that contains an automatically created redirectClosedStefan Bürk2023-11-29

Actions
Actions

Also available in: Atom PDF