3

gh ページで公開されている角度アプリケーションをリロードすると、エラーが発生します。エラーは次のとおりです。

404
File not found.
The site configured at this address does not contain the requested file.

ng build --prod を使用してアプリをビルドしました。

Github リポジトリ: https://github.com/chirag299051/IceAndFire

Github ページ: https://chirag299051.github.io/IceAndFire/

私の app.module.ts ファイルには以下が含まれています。

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';


import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component';
import { AboutComponent } from './about/about.component';

import { RouterModule, Routes } from '@angular/router';
import { BookDetailsComponent } from './book-details/book- 
details.component';
import { CharDetailsComponent } from './char-details/char- 
details.component';
import { HouseDetailsComponent } from './house-details/house- 
details.component';
import { GotService } from './got.service';
import { GotHttpService } from './got-http.service';

import { HttpClientModule, HttpClient } from '@angular/common/http';

@NgModule({
declarations: [
AppComponent,
HomeComponent,
AboutComponent,
BookDetailsComponent,
CharDetailsComponent,
HouseDetailsComponent
],
imports: [
HttpClientModule,
BrowserModule,
RouterModule.forRoot([
  {path: 'home', component: HomeComponent},
  {path:'',redirectTo:'home',pathMatch:'full'},
  {path: 'about', component: AboutComponent},
  {path: 'book/:name',component : BookDetailsComponent},
  {path: 'char/:url',component : CharDetailsComponent},
  {path: 'house/:name',component : HouseDetailsComponent}
])
],
providers: [GotService,GotHttpService,HttpClient],
bootstrap: [AppComponent]
})
export class AppModule { }

また、私のサブドメインでは、リンクをクリックしてもルートが機能しません。nginx を使用してデプロイしました。

サブドメイン : got.chirag9.com

4

1 に答える 1