summaryrefslogtreecommitdiff
path: root/doc/web/homepage/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'doc/web/homepage/index.php')
-rw-r--r--doc/web/homepage/index.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/web/homepage/index.php b/doc/web/homepage/index.php
new file mode 100644
index 0000000..af9d3c4
--- /dev/null
+++ b/doc/web/homepage/index.php
@@ -0,0 +1,7 @@
+<?php
+require_once 'HTTP.php';
+$langs = array("de" => true, "en" => true);
+$selected = HTTP::negotiateLanguage($langs, "en");
+header("Location: $selected/index.php");
+exit;
+?>