thi-hub.de/meta.php

22 lines
356 B
PHP
Raw Normal View History

2023-11-12 17:35:17 +01:00
<?php
// VERSION //
2023-11-12 17:37:25 +01:00
static::$version = "0.1.0";
2023-11-12 17:35:17 +01:00
// 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"]
];
?>