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

25 lines
445 B
PHP

<?php
// VERSION //
static::$version = "1.0.4";
// DEPENDENCIES //
// used extensions
static::$ext[] = "page";
static::$ext[] = "file";
static::$ext[] = "hidden";
static::$ext[] = "project";
// ROUTES //
// redirect to main domain
static::$route["www.gulaschtuve.de"] = [
["path" => "**", "target" => "page/redirect"]
];
// pages
static::$route["gulaschtuve.de"] = [
["path" => "", "target" => "page/start"]
];
?>