Código PHP:
#aca te corregi esto
if(empty($email)) {
die("Espacio en Blanco");
}
$largo = strlen($email);
$com_net = substr($email, -4, $largo);
#aca me habia equivocado yo
if(! strstr($email,"@")){
header("location: aaerrro.html");
// aca diez por poner algo, dsps cambialo si queres
}
else if($largo < 10){
header("location: corto.html");
}else if($com_net !== '.com'){
header("location: nocom.html");
}else if($com_net !== '.net'){
header("location: nonet.html");
}