angular – 路由behing nginx
作者:互联网
我有一个angular2应用程序.如果我使用本地webpack开发服务器,一切正常.
当我在nginx后面的服务器上部署应用程序时,我可以使用应用程序链接导航.但是,如果我输入URL到浏览器URL栏我得到404 Not Found错误.
这是网站的Nginx配置:
server {
listen 80;
server_name mydomain;
location /api {
proxy_pass http://mydomain:4000;
}
location /token-auth {
proxy_pass http://mydomain:4000;
}
location / {
root /www;
}
}
这是我的申请细节:
<base href="/">
@NgModule({
imports: [
RouterModule.forRoot(appRoutes),
export const appRoutes:Routes = [
{ path: 'login', component: LoginComponent },
{ path: 'rss', component: RssComponent, data: { section: 1 }, canActivate: [AuthGuard] },
{ path: '', redirectTo: '/login', pathMatch: 'full' }
];
@Component({
selector: 'my-app',
template: `
<div id="application">
<app-navigation-tabs></app-navigation-tabs>
</div>
<div>
<router-outlet></router-outlet>
</div>
`,
styleUrls: ['app.component.css']
})
<ul class="nav nav-tabs">
<li role="presentation" [ngClass]="{active: currentSection === 3}"><a [routerLink]="['/rss']" (click)="toggleSection(3)">RSS</a></li>
我不确定它是Nginx配置错误,还是我的应用程序错误.我该如何解决?
解决方法:
我已经通过将useHash添加到我的路由器解决了我的问题:
RouterModule.forRoot(appRoutes, { useHash: true }),
标签:nginx,angular2-routing,angular 来源: https://codeday.me/bug/20190627/1307729.html