diff --git a/modules/entry/front/main/index.html b/modules/entry/front/main/index.html
index f6a4c61fcf..fd40910d9e 100644
--- a/modules/entry/front/main/index.html
+++ b/modules/entry/front/main/index.html
@@ -1,22 +1,4 @@
-
-
-
-
-
-
-
-
-
-
+
diff --git a/modules/entry/front/main/index.js b/modules/entry/front/main/index.js
index 75f1d098ad..cc0a8d6a39 100644
--- a/modules/entry/front/main/index.js
+++ b/modules/entry/front/main/index.js
@@ -1,7 +1,12 @@
import ngModule from '../module';
import ModuleMain from 'salix/components/module-main';
-export default class Entry extends ModuleMain {}
+export default class Entry extends ModuleMain {
+ async $onInit() {
+ this.$state.go('home');
+ window.location.href = await this.vnApp.getUrl(`entry/`);
+ }
+}
ngModule.vnComponent('vnEntry', {
controller: Entry,