This repository has been archived on 2024-05-16. You can view files and clone it, but cannot push or open issues or pull requests.
fritteuseneddie-de/meta.php

23 lines
429 B
PHP
Raw Normal View History

2023-04-08 19:06:24 +02:00
<?php
// VERSION //
2023-09-11 16:35:53 +02:00
static::$version = "1.0.5";
2023-04-08 19:06:24 +02:00
// DEPENDENCIES //
// used extensions
2023-09-11 16:35:26 +02:00
static::$ext[] = "page";
static::$ext[] = "file";
static::$ext[] = "hidden";
static::$ext[] = "project";
2023-04-08 19:06:24 +02:00
// ROUTES //
2023-09-11 16:35:26 +02:00
static::$route["www.fritteuseneddie.de"] = [
2023-04-08 19:06:24 +02:00
["path" => "**", "redirect_domain" => "fritteuseneddie.de"]
];
2023-09-11 16:35:26 +02:00
static::$route["fritteuseneddie.de"] = [
2023-04-08 19:06:24 +02:00
["path" => "", "target" => "page/start"]
];
?>