I\'ve defined my routes like this:
const routes: Routes = [ { path: \'\', loadChildren: \'./tabs/tabs.module#TabsPageModule\' }, { path: \'faq\', lo
Try:
this.router.navigate(['child component path'], {relativeTo: this.activatedRoute});
This solved my problem. Happy coding :)