Código PHP:
<?php // Manual de PHP de WebEstilo.com
if (($PHP_AUTH_USER!="Admin") || ($PHP_AUTH_PW!="8592")) {
header('WWW-Authenticate: Basic realm="Acceso restringido"');
header('HTTP/1.0 401 Unauthorized');
echo 'Authorization Required.';
exit;
}
?>
<!-- Manual de PHP de WebEstilo.com -->
<html>
<head>
<title>Ejemplo de PHP</title>
</head>
<body>
Ha conseguido el acceso a la <B>zona restringida</B>.
</body>
</html>
PD : Si da error , quiero que rederrccione.