osrm-backend/Docs/Webpage/index.php
2011-05-22 10:17:36 +00:00

11 lines
259 B
PHP

<?
$url = $_SERVER['HTTP_HOST'];
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;
?>