osrm-backend/Docs/Webpage/index.php

11 lines
221 B
PHP
Raw Normal View History

<?
$url = $_SERVER['HTTP_HOST'];
if($url == "map.project-osrm.org") {
$file = file_get_contents('map.html');
echo $file;
return;
}
$file = file_get_contents('main.html');
echo $file;
return;
?>