Routing issue when i try with "http://localhost:4200/Search-result" but its not redirect. Can you please say me what is wrong with it? Its Redirect to Home page path.
{ path: '', component: HomeComponent, pathMatch: 'full' },
{
path: 'search-result',
pathMatch: 'full',
component: SearchResultComponent
},
{
path: 'search-result/:searchText',
pathMatch: 'full',
component: SearchResultComponent
}