Mercurial > mxd2map
annotate website/switch.php @ 235:00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
* doku/source/_templates/layout.html: defining a custom footer with the
version-string included
* doku/source/conf.py: adopt versionstring and copyright
* doku/source/functionality.txt: formating-cosmetics, correct icon
author | Stephan Holl <stephan.holl@intevation.de> |
---|---|
date | Fri, 05 Aug 2011 09:18:53 +0200 |
parents | 011ec33e84b4 |
children |
rev | line source |
---|---|
155 | 1 <?PHP |
2 switch ($_SERVER["HTTP_HOST"]) { | |
195
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
3 case "www.mxd2map.org": |
123ebb293f3a
* website/.htaccess,
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
4 case "mxd2map.org": |
155 | 5 $target = "index-de.html"; |
6 break; | |
7 default: | |
212
011ec33e84b4
* website/.htaccess, website/buildhtml.mk, website/switch.php:
Stephan Holl <stephan.holl@intevation.de>
parents:
195
diff
changeset
|
8 $target = "index.html"; |
155 | 9 } |
10 readfile($target); | |
11 ?> |