Angular-Routing icon indicating copy to clipboard operation
Angular-Routing copied to clipboard

Angular routing keeps redirecting me to the home page

Open monikap90 opened this issue 2 years ago • 0 comments

I am facing a issues with the routing in Angular .It keeps redirecting me to the home page even though I am entering a valid url (http://localhost:4200/services) This is my code:

app.routing.module

const routes: Routes = [ {path: 'services', loadChildren: () => import('./routes/services/services.module').then(m => m.ServicesModule)}, { path: '', loadChildren: () => import('./routes/home/home.module').then(m => m.HomeModule) }, { path: '', redirectTo: 'home', pathMatch: 'full' }, { path: '**', pathMatch: 'full', redirectTo: ''}, ];

home-routing.module

const routes: Routes = [{ path: '', component: HomeComponent, children: [ { path: '', component: HomeStartingViewComponent }, { path: '', component: MeetUsComponent }, { path: '', component: ServiceItemsComponent }, { path: '', component: TitleComponent }, {path:'', component:CaseStudyComponent}, {path: '', component:BenefitsComponent}, {path:'', component:PartnersComponent}], }]

services-rouiting.module

const routes: Routes = [{ path: '', component: ServicesComponent, children: [ {path:'', component:TitleComponent} ] }];

monikap90 avatar Oct 25 '23 10:10 monikap90