---
title: "Drupal 8 - Update Routes"
url: "https://michalak.world/posts/drupal-8-update-routes/"
description: "Update routes with Drush"
summary: "Notes on updating routes in Drupal 8 with Drush."
date: 2019-04-01
lastmod: 2026-08-19
tags: ["Drupal 8","Drush","Drupal Development"]
section: "posts"
author: "Michael Michalak"
site: "https://michalak.world/"
---

# Drupal 8 - Update Routes

Update routes with Drush

I recently update my modules routing.yml file and needed to update the routes in my Drupal 8 project.

Clearing the caches won't update the routes.

To update the routes run this command with Drush: 
```
drush ev '\Drupal::service("router.builder")->rebuild();'
```

