启动时的角度重定向或写入错误的URL

时间:2018-03-09 11:49:06

标签: angular url routes

我想询问是否可以将“localhost:4200”之后的每个URL重定向到“localhost:4200 / Welcome”,如果在网址中输入了其他内容。但之后应该可以到达其他URL,例如“localhost:4200 / Files”,而不是在浏览器中传递URL。我的路线在这里:

const routes: Routes = [
{ path: '', redirectTo: '/Welcome', pathMatch: 'full' },
{ path: 'Welcome', component: LoaderComponent},
{ path: 'Files', component: RowOfDataComponent },
{ path: 'Files/newFiles/:lid', component: DataArrowComponent },
{ path: '**', redirectTo: '/Welcome' }

];

因此,每当有人试图在URL中写入别人而不是“localhost:4200 / Welcome”时,他将被重定向到“localhost:4200 / Welcome”。

我非常感谢你的帮助,已经感谢您阅读。

0 个答案:

没有答案