pathlocationstrategy角度4不起作用。
我已经在我的AWS环境中部署了我的角度应用程序。
配置详细信息:
我的网址存在问题,无法直接访问。
示例:
example.com/work-直接打开。当我打开example.com/work/2(工作页面上的链接。)时,它打开得很好。但是如果直接打开example.com/work/2,则无法打开。
以下是我的应用路由详细信息。
export const AppRoutes: Routes = [
{
path: '',
component: WebComponentLayout,
pathMatch : 'prefix',
children: [
{
path: ':id',
component: WorkDetailComponent,
pathMatch : 'full'
},{
path: '',
component: WorkListingComponent,
pathMatch : 'full'
}
]
}
];
请不确定是否需要在HAproxy上进行任何其他配置才能使其正常工作或路由出现问题。
我也不想采用“哈希定位”策略。