diff --git a/public_html/includes/base.php b/public_html/includes/base.php
new file mode 100644
index 0000000..a9c4cf8
--- /dev/null
+++ b/public_html/includes/base.php
@@ -0,0 +1,18 @@
+ignore_query = true;
+$router->allow_slash = true;
+
+$router->routes = array(
+ 0 => array(
+ "^/$" => "modules/index.php"
+ )
+);
+
+$router->RouteRequest();