Angular2 - 无法重定向到NotFound页面

时间:2016-10-28 15:41:32

标签: angular angular2-routing

如果用户输入错误网址,我想将用户重定向到未找到网页。我看到了这个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'
    },
]

如果所有路径都与路径不匹配,我想重定向到主页

1 个答案:

答案 0 :(得分:1)

更改为以下内容,

{
        path: "**",
        redirectTo: 'home',
        pathMatch: 'full'
},