---
title: "Be.link ViewHelper <f:be.link>"
manual: "Fluid ViewHelper Reference"
version: "13.4"
permalink: "https://docs.typo3.org/permalink/t3viewhelper:typo3-fluid-be-link@13.4"
source: "Global/Be/Link.rst"
rendered: "2026-09-26T06:11:35+00:00"
---

# Be.link ViewHelper `<f:be.link>` {#typo3-fluid-be-link}

ViewHelper for creating URIs to backend modules.

Go to the source code of this ViewHelper: [Be\\LinkViewHelper.php (GitHub)](https://github.com/TYPO3/typo3/blob/main/typo3/sysext/fluid/Classes/ViewHelpers/Be/LinkViewHelper.php).

**Table of contents**

-   [Examples](https://docs.typo3.org/permalink/t3viewhelper:examples@13.4)
-   [Arguments of the <f:be.link> ViewHelper](https://docs.typo3.org/permalink/t3viewhelper:arguments-of-the-f-be-link-viewhelper@13.4)

## Examples {#typo3-fluid-be-link-example}

URI to the web_ts module on page 92:

**packages/my_extension/Resources/Private/Templates/Module/Index.fluid.html**

```html
<f:be.link route="web_ts" parameters="{id: 92}">Go to web_ts</f:be.link>
```

**Output**

```html
<a href="/typo3/module/web/ts?token=b6e9c9f&id=92">Go to web_ts</a>
```

## Arguments of the `<f:be.link>` ViewHelper {#typo3-fluid-be-link-arguments}

> **Allows arbitrary arguments**
>
> This ViewHelper allows you to pass arbitrary arguments not defined below
> directly to the HTML tag created. This includes custom `data-` arguments.

-   **additionalAttributes**

    -   *Type:* array

    Additional tag attributes. They will be added directly to the resulting HTML tag.

-   **aria**

    -   *Type:* array

    Additional aria-\* attributes. They will each be added with a "aria-" prefix.

-   **data**

    -   *Type:* array

    Additional data-\* attributes. They will each be added with a "data-" prefix.

-   **parameters**

    -   *Type:* array
    -   *Default:* array (
    )

    An array of parameters

-   **referenceType**

    -   *Type:* string
    -   *Default:* 'absolute'

    The type of reference to be generated (one of the constants)

-   **route**

    -   *Type:* string
    -   *Required:* true

    The name of the route
