thi-hub.de/meta.php
2024-02-25 19:13:50 +01:00

28 lines
541 B
PHP

<?php
// VERSION //
static::$version = "0.1.0";
// DEPENDENCIES //
// used extensions
static::$ext[] = "project";
static::$ext[] = "lang";
static::$ext[] = "request";
static::$ext[] = "url";
static::$ext[] = "page";
static::$ext[] = "file";
// ROUTES //
// redirect to main domain
static::$route["www.thi-hub.de"] = [
["path" => "**", "target" => "page/redirect"]
];
// pages
static::$route["thi-hub.de"] = [
["path" => "", "target" => "page/start"],
["path" => ":lang", "target" => "page/start"],
];
?>