如果用户输入错误网址,我想将用户重定向到未找到网页。我看到了这个post和这个page并尝试了自己的项目。但是当我输入somthing时会收到错误:
Invalid route configuration of route '/**': path cannot start with a slash
我的 app.routing.ts
export const routes: Routes = [
{
path: 'home',
component: AppComponent,
children: [
{
path: '',
component: LoginComponent
}
]
},
{
path: "/**",
redirectTo: 'home',
pathMatch: 'full'
},
]
如果所有路径都与路径不匹配,我想重定向到主页
答案 0 :(得分:1)
更改为以下内容,
{
path: "**",
redirectTo: 'home',
pathMatch: 'full'
},