1. 程式人生 > >Angular 4 重定向路由

Angular 4 重定向路由

mat 地址 edi 現在 重新 另一個 img mage logs

重定向路由: 用戶訪問一個指定的地址時,將其重新向到另一個指定的地址

(接前面的一節)

配置如下:

技術分享

之前http://localhost:4200 會進入主頁,現在將主頁導航改為home,http://localhost:4200也顯示404

此時配置重定向,如上圖{ path: ‘‘, redirectTo : ‘/home‘, pathMatch: ‘full‘ },

這樣http://localhost:4200會導航到http://localhost:4200/home

主頁導航的修改

技術分享

Angular 4 重定向路由