I want to redirect, under certain conditions, when the page is loaded or before. For example, Cookies have to have something, then do a redirect.
this.router.navigate(["details"]);
in AppComponent.NgOnInit not working!
Routers:
const APP_ROUTES : Route[] = [
{ path: '', component: FormComponent, children: FORM_ROUTES},
{ path: 'details', component: DetailsComponent}
];
Module imports and bootstrap:
imports: [
BrowserModule,
FormsModule,
HttpModule,
RouterModule.forRoot(APP_ROUTES),
RouterModule.forChild(FORM_ROUTES)
],
bootstrap: [AppComponent]
Angular 2.