2011-05-12 05:02:38 -04:00
|
|
|
<?
|
|
|
|
$url = $_SERVER['HTTP_HOST'];
|
2011-05-22 06:17:36 -04:00
|
|
|
if($url == "map.project-osrm.org" || $url == "www.map.project-osrm.org") {
|
2011-05-12 05:02:38 -04:00
|
|
|
$file = file_get_contents('map.html');
|
|
|
|
echo $file;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$file = file_get_contents('main.html');
|
|
|
|
echo $file;
|
|
|
|
return;
|
|
|
|
?>
|