php auth用户重定向标头位置

时间:2013-03-06 11:12:49

标签: php authentication

这对我有用了很长时间,突然间它停止了工作。 我在同一文件夹(用户)中有.htaccess和.htpasswd,下面是index.php文件

<?
if(isset($_SERVER['PHP_AUTH_USER'])) { 
header("Location: http://website.com/users/".$_SERVER['PHP_AUTH_USER']); 
    } 
else header("Location: http://website.com/failed_login"); 
?>

1 个答案:

答案 0 :(得分:0)

试试这个

<?php
if(isset($_SERVER['PHP_AUTH_USER'])) { 
   header("Location: http://website.com/users/".$_SERVER['PHP_AUTH_USER']); 
} 
else {
   header("Location: http://website.com/failed_login");
} 
?>