2
我想重定向時刷新page.Before刷新頁面我是默認頁這裏http://localhost/mypage/#/brand,當我刷新頁面 我想重定向http://localhost/mypage/#/homeAngular2重定向到默認頁面
const appRoutes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: Home },
{ path: 'brand', component: BrandCP },
];
export const appRoutingProviders: any[] = []
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes, { useHash: true});