🔀 merge pull request 'v1.0.13' (#13) from dev into main

Reviewed-on: kimendisch/selbstbestimmungsgesetz-jetzt-de#13
This commit is contained in:
DrMaxNix 2023-09-11 21:12:02 +02:00
commit 884a9a20b3
2 changed files with 10 additions and 5 deletions

View File

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

View File

@ -1,6 +1,6 @@
<?php <?php
// VERSION // // VERSION //
static::$version = "1.0.12"; static::$version = "1.0.13";
// DEPENDENCIES // // DEPENDENCIES //
@ -13,11 +13,16 @@
// ROUTES // // ROUTES //
static::$route["www.selbstbestimmungsgesetz-jetzt.de"] = [ // redirect to main domain
["path" => "**", "redirect_domain" => "selbstbestimmungsgesetz-jetzt.de"] $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"] ["path" => "", "target" => "page/start"]
]; ];
?> ?>