---
title: "Feature: #84120 - Absolute URLs for typolink ViewHelpers"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-84120"
source: "Changelog/9.2/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #84120 - Absolute URLs for typolink ViewHelpers

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

## Description

The new parameter `absolute` has been added to the Fluid ViewHelpers `<f:uri.typolink>` and `<f:link.typolink>`,
allowing to generate absolute links, like other ViewHelpers used for linking handle it already.

## Impact

It is now possible to add the `absolute` parameter to the ViewHelpers above.

```html
<f:link.typolink parameter="23" absolute="true">Link To My Page</f:link.typolink>
<f:uri.typolink parameter="23" absolute="true" />
```

generates

```html
<a href="https://www.mydomain.com/index.php?id=23">Link to My Page</a>
https://www.mydomain.com/index.php?id=23
```
