将文件URL重定向到角度组件

时间:2018-02-15 14:15:03

标签: angular router angular4-router

您好我想迁移我的angular 4项目中的现有链接。 例如,我的链接是“http://www.test.com/test/site.aspx”。

我在路由器配置中尝试过:

    path: 'test', 
    component: TestComponent,
    children: [{
      path: '',
      component: ContactComponent
    }]

        path: 'test/site.aspx', 
        component: ContactComponent

但这一切都没有效果。 任何想法如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用redirectTo如下:

{ path: 'test/site.aspx', redirectTo: '/contact', pathMatch: 'full' }, { path: 'contact', component: ContactComponent},