Expolibre-3-www/htdocs/en/test.php

10 lines
202 B
PHP
Raw Normal View History

2016-06-24 11:35:09 +02:00
<?php $notallow = array("78.231.79.93", "109.190.109.123", "2.5.42.183");
if(in_array($_SERVER['REMOTE_ADDR'], $notallow)) {
header("Location: http://www.expolibre.org/expolibre.html");
exit();
}
?>