Search code examples
angularangular2-routingangular-cli

404 error when try to access a direct url in different modules with angular-cli server


So, I'm trying to access directly the url using angular2, with angular-cli. So, when I access the url http://192.168.56.103:3000/app the application and all modules and their paths works fine.

But when I tried to access the modules path directly (such as http://192.168.56.103:3000/employee/upload) I got this error:

upload:10 GET http://192.168.56.103:3000/employee/styles.e7a71cdafac175e58c1d2b9d347ab895.bundle.css 
upload:18 GET http://192.168.56.103:3000/employee/inline.d41d8cd98f00b204e980.bundle.js 
upload:18 GET http://192.168.56.103:3000/employee/styles.d6983b9a92d269fc6b29.bundle.js 
upload:18 GET http://192.168.56.103:3000/employee/scripts.916e0bd9d793165463ce.bundle.js 
upload:18 GET http://192.168.56.103:3000/employee/main.aa7bb73e6fe0d8821716.bundle.js 404 (Not Found)

It is something like, the Href Base is not the http://192.168.56.103:3000/ root, but it is http://192.168.56.103:3000/employee. So for that reason, my application got some errors to not found those files. So How can I solve that problem in angular2 with angular-cli server?

Also, I tried to add an base Href in my module, but nothing happens and the error still the same:

import { CommonModule, APP_BASE_HREF }   from '@angular/common';

@NgModule({
  imports: [
  ],
  declarations: [

  ],
  providers: [
     ....
    {provide: APP_BASE_HREF, useValue : '/' }
  ]
})
...

My routing is showed below:

import { ModuleWithProviders }  from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
...

const entity : string = 'employee';

const employeeRoutes: Routes = [
    { path: entity,
        children: [
        { path: '', redirectTo: 'list', canActivate: [AuthGuard] },
        { path: 'list', component: ListComponent, canActivate: [AuthGuard] },
        { path: 'upload', component: UploadComponent, canActivate: [AuthGuard] },
        { path: 'edit/:id', component: EditComponent, canActivate: [AuthGuard] }
        ]
    }
];

export const employeeRouting: ModuleWithProviders = RouterModule.forChild(employeeRoutes);

Need some help please. Thanks!


Solution

  • Problem solved!

    I just remove APP_BASE_HREF and added location strategy in the main module:

    // ...
    import { HashLocationStrategy, LocationStrategy } from '@angular/common';
    
    @NgModule({
      imports: [
        // ...
      ],
      declarations: [
        // ...
      ],
      providers: [
        // ...
        {provide: LocationStrategy, useClass: HashLocationStrategy}
      ],
      bootstrap: [ AppComponent ]
    })
    
    export class AppModule {
    }
    

    Now I can access nested urls directly.