Project

General

Profile

Actions

Bug #90228

closed

Typolink: Forcing absolute url scheme does not work

Added by Mario Lubenka over 4 years ago. Updated over 2 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Start date:
2020-01-28
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:

Description

According to documentation it is possible to force a url scheme (like https) as below:

page.1 = TEXT
page.1.typolink.parameter = 2
page.1.typolink.returnLast = url
page.1.typolink.forceAbsoluteUrl = 1
page.1.typolink.forceAbsoluteUrl.scheme = https

However the generated URL still only has the http protocol.

Looking into the PageUrlBuilder the corresponding line $url = $this->forceAbsoluteUrl($url, $conf); is only run for access-restricted pages.

Applying that to all urls by moving it down a line works for the scheme.
However the RegEx that is used seems to miss out on the / between base url and path.
So instead of "https://mypage.site/home" it generates "https://mypage.sitehome".

This RegEx seems to work better: #^(?:([a-z]+)(://)([^/]*)(/?))?(.*)$# (see RegEx in action)

I only tested this for TYPO3 9.5.13. Might affect 8.7 as well.


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #95796: Protocol is missing in absolute URLsClosed2021-10-27

Actions
Actions

Also available in: Atom PDF