pablocattaneo
7/11/2017 - 12:39 PM

Redirect all url that you don't cover on you app. Page not found

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