这对我有用了很长时间,突然间它停止了工作。 我在同一文件夹(用户)中有.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");
?>
答案 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");
}
?>