Redirect all url that you don't cover on you app. Page not found
const appRoutes: Routes = [
// Other rounters...
{ path: 'not-found', component: PageNotFoundComponent },
{ path: '**', redirectTo: '/not-found' }
];
//{ path: '**', redirectTo: '/not-found' } must be the last element in the array of routes
// ** this mean all the paths that wasn't defined