Angular Accédez à la même route avec un paramètre différent

  openCategory(id: any, rev: any) {
    this.router.navigateByUrl('/', { skipLocationChange: true })
      .then(() => this.router.navigate(['/category/' + id + '/' + rev]));
  }
Vivacious Vendace