thi-hub.de/meta.php
2023-11-12 17:35:17 +01:00

22 lines
356 B
PHP

<?php
// VERSION //
static::$version = "1.0.0";
// DEPENDENCIES //
// used extensions
static::$ext[] = "excuse";
// 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"]
];
?>