导航localhost:4200到404页

时间:2018-05-04 19:48:25

标签: angular angular-ui-router

我们希望将根localhost:4200(或已部署的根网址,如myApp.com)导航到404.该应用程序仅设计为/home/id/anotherID,因为{{{ 1}}和id将在后端使用。我已经尝试了anotherID和。{   {path: '',ccomponent: ErrorPageComponent}。我似乎无法获得根网址到404页面。目前我们的路由有以下内容:

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

由于

2 个答案:

答案 0 :(得分:0)

要仅定位根网址,您应该使用pathMatch='full'。 你试过了吗?

答案 1 :(得分:0)

尝试 {path: '**', component: NotfoundComponent, pathMatch: 'prefix'},

另外,请将此作为您的最后一个条目。确保项目编译并且路线正在运行。