diff --git a/Angular2_CLI_Full_Project/src/app/app.module.ts b/Angular2_CLI_Full_Project/src/app/app.module.ts
index 586f1a87fa80beeae71f70de0804149229a4e8bd..35b6855512e3e492108c3af96eedc3d17ae76a8d 100644
--- a/Angular2_CLI_Full_Project/src/app/app.module.ts
+++ b/Angular2_CLI_Full_Project/src/app/app.module.ts
@@ -1,5 +1,7 @@
 import { NgModule }                     from '@angular/core';
 import { BrowserModule }                from '@angular/platform-browser';
+import { LocationStrategy,
+    HashLocationStrategy }         from '@angular/common';
 
 import { AppComponent }                 from './app.component';
 import { Ng2BootstrapModule }           from 'ng2-bootstrap/ng2-bootstrap';
@@ -43,36 +45,40 @@ import { LoginComponent }               from './pages/login.component';
 import { RegisterComponent }            from './pages/register.component';
 
 @NgModule({
-  imports: [
-    BrowserModule,
-    routing,
-    Ng2BootstrapModule,
-    ChartsModule
-  ],
-  declarations: [
-    AppComponent,
-    FullLayoutComponent,
-    SimpleLayoutComponent,
-    DashboardComponent,
-    ButtonsComponent,
-    CardsComponent,
-    FormsComponent,
-    SocialButtonsComponent,
-    SwitchesComponent,
-    TablesComponent,
-    FontAwesomeComponent,
-    SimpleLineIconsComponent,
-    WidgetsComponent,
-    ChartsComponent,
-    p404Component,
-    p500Component,
-    LoginComponent,
-    RegisterComponent,
-    NAV_DROPDOWN_DIRECTIVES,
-    BreadcrumbsComponent,
-    SIDEBAR_TOGGLE_DIRECTIVES,
-    AsideToggleDirective
-  ],
-  bootstrap: [ AppComponent ]
+    imports: [
+        BrowserModule,
+        routing,
+        Ng2BootstrapModule,
+        ChartsModule
+    ],
+    declarations: [
+        AppComponent,
+        FullLayoutComponent,
+        SimpleLayoutComponent,
+        DashboardComponent,
+        ButtonsComponent,
+        CardsComponent,
+        FormsComponent,
+        SocialButtonsComponent,
+        SwitchesComponent,
+        TablesComponent,
+        FontAwesomeComponent,
+        SimpleLineIconsComponent,
+        WidgetsComponent,
+        ChartsComponent,
+        p404Component,
+        p500Component,
+        LoginComponent,
+        RegisterComponent,
+        NAV_DROPDOWN_DIRECTIVES,
+        BreadcrumbsComponent,
+        SIDEBAR_TOGGLE_DIRECTIVES,
+        AsideToggleDirective
+    ],
+    providers: [{
+        provide: LocationStrategy,
+        useClass: HashLocationStrategy
+    }],
+    bootstrap: [ AppComponent ]
 })
 export class AppModule { }