如何使用applciation-wide URL前缀配置Angular2路由器?

时间:2016-12-19 12:39:14

标签: javascript angular angular2-routing

我想从http://www.domain.tld/apppath/

提供我的申请

以便所有路线看起来像:

  • 使用domain.tld / APPPATH /主页
  • 使用domain.tld / APPPATH / searchpage
  • 使用domain.tld / APPPATH / resultspage

等...

如何配置路由器,以便我不必明确指定“路径”。每条路线的前缀?

1 个答案:

答案 0 :(得分:3)

<head>
  <base href="/apppath">

@NgModule({
  providers: [{provide: APP_BASE_HREF, useValue: '/apppath'}],
  ...
})
export class AppModule{}