thi-hub.de/meta.php
2024-03-01 16:59:13 +01:00

28 lines
541 B
PHP

<?php
// VERSION //
static::$version = "1.0.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"],
];
?>