Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * @pr�ambule : http://www.pcinpact.com/actu/news/51801-hadopi-wikipedia-olivier-henrard.htm
- *
- */
- function refuse($forbidden, $redirect, $email) {
- $host = gethostbyaddr($_SERVER['REMOTE_ADDR']);
- if(substr($host, -1 * strlen($forbidden)) == $forbidden){
- header("Status: 301");
- header('Location: http://'.$_SERVER['SERVER_NAME'] . $redirect);
- mail($email,"[{$_SERVER['SERVER_NAME']}][refus de $forbidden]",$host."\n\n".print_r($_SERVER, true));
- exit;
- }
- }
- /**
- * Fonction pr�sente sur toutes les pages de http://www.jaimelesartistes.info :
- */
- /**
- * r�sultat : tout visiteur en provenance de la Rue de Valois n'a droit qu'� http://www.jaimelesartistes.info/block.php
- *
- * c'est un peu pu�ril - mais qu'est ce que �a peut me faire rire
- *
- * -et �a marche : d�j� deux alertes re�ues dans la bo�te mail-
- *
- */
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement