thi-hub.de/meta.php

26 lines
489 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
2024-02-25 18:06:26 +01:00
static::$ext[] = "project";
static::$ext[] = "lang";
static::$ext[] = "request";
static::$ext[] = "url";
2023-11-12 17:35:17 +01:00
// ROUTES //
// redirect to main domain
static::$route["www.thi-hub.de"] = [
["path" => "**", "target" => "page/redirect"]
];
// pages
static::$route["thi-hub.de"] = [
2024-02-25 18:06:26 +01:00
["path" => "", "target" => "page/start"],
["path" => ":lang", "target" => "page/start"],
2023-11-12 17:35:17 +01:00
];
?>