---
title: "Be.uri ViewHelper <f:be.uri>"
manual: "Fluid ViewHelper Reference"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3viewhelper:typo3-fluid-be-uri@main"
source: "Global/Be/Uri.rst"
modified: "2026-09-17T05:12:06+00:00"
---

# Be.uri ViewHelper `<f:be.uri>`

ViewHelper for creating URIs to backend modules.

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

**Table of contents**

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

## Examples

URI to the web_ts module on page 92:

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

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

**Output**

```text
/typo3/module/web/ts?token=b6e9c9f&id=92
```

Inline notation:

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

```html
{f:be.uri(route: 'web_ts', parameters: '{id: 92}')}
```

**Output**

```text
/typo3/module/web/ts?token=b6e9c9f&id=92
```

## Arguments of the `<f:be.uri>` ViewHelper

-   **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
