9 lines
215 B
PHP
9 lines
215 B
PHP
<?php
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
header('Access-Control-Allow-Origin: *');
|
|
header('Access-Control-Allow-Headers: *');
|
|
|
|
if ($_SERVER['HTTP_AUTHORIZATION']==='*') {
|
|
include("server.php");
|
|
}
|