mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
25 lines
461 B
PHP
25 lines
461 B
PHP
<?php
|
|
/**
|
|
* This file is useful to check we are
|
|
* on an allowed host for Comunic
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
isset($_SESSION) OR exit("Invalid call - ".$_SERVER['PHP_SELF']);
|
|
|
|
/**
|
|
* Getting list of allowed host
|
|
*/
|
|
include(websiteRelativePath("inc/config/listAllowedHosts.inc.php"));
|
|
|
|
/**
|
|
* Performing security check
|
|
*/
|
|
if(!in_array($_SERVER['HTTP_HOST'], $liste_allowed_hosts))
|
|
{
|
|
//On redirige vers l'URL du site
|
|
header('location: '.$urlsite);
|
|
}
|
|
|