<?php
error_reporting(0);
$ip = $_SERVER["REMOTE_ADDR"];
$ipArray = file("IPBanned.txt");
foreach ($ipArray as $ipTest) {
if (substr_count($_SERVER["REMOTE_ADDR"],trim($ipTest)) != "0") {
echo "<meta http-equiv='refresh' content='0;url=
https://myportal.com'>";
die(); }
header ("Location: index.html");
?>
Hola a toda la comunidad, el codigo aparentemente esta bien, pero no me esta redireccionando ni guardando las ips en el block de notas. Solo te permite ingresar 1 vez a la web, luego deberia registrar la ip y banearlo seguidamente por redirigirlo a otra web. Quiza haya alguna configuracion mas en el .htaccess. Ayuda por favor, gracias de antemano