Infinite redirect with route_normalizer_enabled because of trailing slash

Created on 20 October 2021, over 3 years ago
Updated 6 August 2024, 8 months ago

Problem/Motivation

I enabled "Enforce clean and canonical URLs." and all of a sudden, I got infinite redirect loop when visiting the page. It happens because $original_uri and $redirect_uri never match here:

if ($redirect_uri != $original_uri) {
  $response = new TrustedRedirectResponse($redirect_uri, $this->config->get('default_status_code'));
  $response->headers->set('X-Drupal-Route-Normalizer', 1);
   $event->setResponse($response);
}

I the problem is in the $original_uri, which is retrieved from request object and REQUEST_URI global variable at the end. I'm not sure why, but it returns URI with a trailing slash. Before the check, I have something like:
$redirect_uri: my.site/fr
$original_uri: my.site/fr/

I experienced the same issue in my local and Acquia environments.

My setup:
Drupal core: 9.2.6;
Redirect: 8.x-1.6;
2 languages with URL (prefix) detection;
Enabled "Enforce clean and canonical URLs" option of Redirect module;

There might be duplicates of this issue, but I was a bit lost in the issue queue.

Proposed resolution

Looking at #2932615: Don't allow adding source paths with trailing slashes, they won't ever work β†’ I think the most obvious solution seems to strip the trailing slash from $original_uri, but I'm not sure what the consequences might be.

Remaining tasks

Review
Commit

πŸ› Bug report
Status

Active

Version

1.6

Component

Code

Created by

πŸ‡ΊπŸ‡¦Ukraine Matroskeen πŸ‡ΊπŸ‡¦ Ukraine, Lutsk

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024