diff switch.php @ 155:5a882b5773c9

initial website.
author Emanuel Schuetze <emanuel@intevation.de>
date Wed, 30 Mar 2011 15:51:06 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/switch.php	Wed Mar 30 15:51:06 2011 +0200
@@ -0,0 +1,11 @@
+<?PHP
+switch ($_SERVER["HTTP_HOST"]) {
+ case "www.mapwoc.de":
+ case "mapwoc.de":
+   $target = "index-de.html";
+   break;
+ default:
+   $target = "index.html";
+ }
+readfile($target);
+?>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)