我有一个简单的Angular 5应用程序。 它运行在网址http://localhost:4002
上我想使用其他子上下文。例如http://localhost:4002/myapp
我不确定将其添加到我的本地环境中。
我尝试过以下但没有用。
<base href="/myapp">
答案 0 :(得分:1)
您可以创建路由模块并重定向/到/ myapp 例如:
import { Routes, RouterModule } from '@angular/router'
import MyAppComponent from './my-app.component.ts'
const routes: Routes = [
{ path '', redirectTo: 'myapp', pathMatch: full },
{ path 'myapp', component: MyAppComponent }
]
// also add the module to the imports array ex:
imports: [
RouterModule.forRoot(routes);
]
答案 1 :(得分:0)
我使用以下命令来解决我的问题
ng build --prod --bh /myapp/ --d /myapp/