thi-hub.de/meta.php
2024-02-25 18:06:26 +01:00

26 lines
489 B
PHP

<?php
// VERSION //
static::$version = "0.1.0";
// DEPENDENCIES //
// used extensions
static::$ext[] = "project";
static::$ext[] = "lang";
static::$ext[] = "request";
static::$ext[] = "url";
// 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"],
];
?>