Nominatim/lib/init-website.php

18 lines
466 B
PHP
Raw Normal View History

2010-10-24 03:12:37 +04:00
<?php
require_once('init.php');
require_once('website.php');
2010-10-24 03:12:37 +04:00
if (CONST_NoAccessControl)
{
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: OPTIONS,GET");
if (!empty($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
{
header("Access-Control-Allow-Headers: ".$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']);
}
}
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') exit;
2010-10-24 03:12:37 +04:00
header('Content-type: text/html; charset=utf-8');