sbgg.jetzt/meta.php

24 lines
498 B
PHP
Raw Normal View History

2023-04-22 17:31:48 +02:00
<?php
// VERSION //
2023-09-11 16:28:43 +02:00
static::$version = "1.0.12";
2023-04-22 17:31:48 +02:00
// DEPENDENCIES //
// used extensions
2023-09-11 16:27:51 +02:00
static::$ext[] = "lang";
static::$ext[] = "page";
static::$ext[] = "file";
static::$ext[] = "hidden";
static::$ext[] = "project";
2023-04-22 17:31:48 +02:00
// ROUTES //
2023-09-11 16:27:51 +02:00
static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = [
2023-04-22 17:31:48 +02:00
["path" => "**", "redirect_domain" => "selbstbestimmungsgesetz-jetzt.de"]
];
2023-09-11 16:27:51 +02:00
static::$route["selbstbestimmungsgesetz-jetzt.de"] = [
2023-04-22 17:31:48 +02:00
["path" => "", "target" => "page/start"]
];
?>