0

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

1 回答 1

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");
} 
?>
于 2013-03-06T11:16:18.973 回答