Configured routing in app.module.ts
const appRoutes: Routes =[ { path: '', component: HomeComponent}, { path: 'house/:type/:series/:address', component: CalcComponent}, { path: 'calc-custom', component: CalcCustomComponent}, { path: 'payment', component: PaymentComponent}, { path: 'order', component: OrderComponent}, { path: 'modals', component: ModalsComponent}, { path: '**', component: NotFoundComponent } ];
When you click the link http: // localhost: 4000 / house / panel / p-44t-ug /? STREET = Pokrovskaya% 20, the street & HOUSE = 14 redirects to the link http: // localhost: 4000 / house / panel / p-44t-ug ? STREET = Pokrovskaya% 20 & HOUSE = 14 and issues a 404 error pattern. What am I doing wrong?
?STREET=...
is a request parameter, not a route parameter - overthesanity