osrm-backend/Docs/Webpage/index.php

11 lines
259 B
PHP
Raw Normal View History

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