import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { HomeComponent } from './home/home.component'; import {OtherPageComponent } from "./other-page/other-page.component"; const routes: Routes = [ { path: '', pathMatch: 'full', component: HomeComponent }, { path: 'home', redirectTo: '' }, { path: 'other', component: OtherPageComponent }, { path: '**', redirectTo: '' } ]; @NgModule({ imports: [RouterModule.forRoot(routes, { useHash: true })], exports: [RouterModule] }) export class AppRoutingModule { }