我有一个通过 CloudFlare 工作者提供的 Angular 应用程序。该应用程序在example.com/home
路线上提供。
当我在浏览器中转到https://example.com/home
URL 时,应用程序已正确加载,但 URL 会自动更改为https://example.com/home/
.
该应用程序是使用--base-href=/home
选项构建的。
我责怪角。如何禁用此行为?
路由配置如下:
const routes: Routes = [
{
path: '',
component: HomeComponent,
canActivate: [AuthGuard],
}
]
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule],
})
export class AppRoutingModule {}