Например вот так:
constructor(private router: Router) { }
this.router.events
.subscribe( res => {
if (res instanceof NavigationEnd) {
this.currentUrl = res.urlAfterRedirects;
}
});
<ng-container *ngIf=currentUrl === 'какой-то url'
<button>Назад</button>
</ng-container>