我有一个运行良好的 Angular 4 应用程序。
我一直在使用 HashLocationStrategy,但我决定不再在我的网址中使用哈希。
我的路由器设置现在看起来像这样......
export const routes: Routes = [
{
path: '',
component: TilesComponent
},
{
path: 'profile/:urlUserName',
component: ProfileComponent
},
{
path: 'forBusiness',
component: ForBusinessComponent
},
{
path: 'login',
component: LoginPageComponent
},
{
path: 'editTile/:urlUserName',
component: EditTileComponent,
canActivate: [AuthenticationService]
}
];
export const appRoutingProviders: any[] = [];
export const routing = RouterModule.forRoot(routes, { });
我有一个来自我的打开页面的链接,它是这样生成的......
routerLink="/forBusiness"
它重定向到此页面...
https://www.tilecase.com/forBusiness
现在,如果我只是将此 url 放入浏览器并尝试单独加载 forBusiness 页面,我会收到“找不到页面”错误。
我需要对我的路线或页面设置做些什么才能使其正常工作?