// in .component.ts file import { Router } from '@angular/router'; export class ExampleComponent { constructor(private _router: Router) {} } // in html file <footer *ngIf="_router.url != '/your-route'"></footer>