本文介绍了如何将不存在的链接重定向到Angular 2中的主页?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果用户输入的链接不存在,我希望页面重定向到首页.

If user input a not-existing link, I want the page redirect to Home page.

我该怎么办?谢谢

@RouteConfig([
    {path: '/home', name: 'Home', component: HomeComponent},
    {path: '/about', name: 'About', component: AboutComponent},
    {path: '/???', name: 'not-found', redirectTo: ['Home']}
])

推荐答案

这会将所有未注册的路由重定向到首页

This will redirect all unregistered routes to Home

{ path: "/**", redirectTo: ["Home"] }

这篇关于如何将不存在的链接重定向到Angular 2中的主页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:57