🔍 new main domain `sbgg.jetzt`

This commit is contained in:
DrMaxNix 2023-09-11 21:10:57 +02:00
parent d695be720d
commit 65a7bb7281
2 changed files with 9 additions and 4 deletions

View File

@ -1,2 +1,2 @@
# www.selbstbestimmungsgesetz-jetzt.de
# SBGG.jetzt
Website documenting the progress of the German Selbstbestimmungsgesetz.

View File

@ -13,11 +13,16 @@
// ROUTES //
static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = [
["path" => "**", "redirect_domain" => "selbstbestimmungsgesetz-jetzt.de"]
// redirect to main domain
$redirect = [
["path" => "**", "redirect_domain" => "sbgg.jetzt"]
];
static::$route["www.sbgg.jetzt"] = $redirect;
static::$route["selbstbestimmungsgesetz-jetzt.de"] = $redirect;
static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = $redirect;
static::$route["selbstbestimmungsgesetz-jetzt.de"] = [
// pages
static::$route["sbgg.jetzt"] = [
["path" => "", "target" => "page/start"]
];
?>