Angular:404页面但保留网址

时间:2017-08-30 17:12:41

标签: javascript angular

我在Angular 4中编写了一个自定义404页面,并希望保留输入的错误网址。 例如,您可以在github上看到行为。它们显示不存在网址的404页面。示例:https://github.com/cdkdfjkdjf

目前我的路由器配置如下:

{ path: '404', component: NotFoundComponent },
{ path: '**', redirectTo: '404' }

知道如何存档吗?

1 个答案:

答案 0 :(得分:4)

解决方案非常简单:

 { path: '**', component: NotFoundComponent }