# How to get the current url in Hugo

> Learn how to get the current URL in Hugo using the .Page.RelPermalink value, trimming the slashes to get a clean relative path like ebooks or ebooks/php.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2022-07-16 | Topics: [Hugo](https://flaviocopes.com/tags/hugo/) | Canonical: https://flaviocopes.com/hugo-get-current-url/

```
{{ trim .Page.RelPermalink "/"}}
```

This is the result:

```
yoursite.com/ebooks -> "ebooks"
yoursite.com/ebooks/php -> "ebooks/php"
```
