2017-05-26 146 views

回答

0

隨着PHP文件中指出:http://php.net/manual/en/features.http-auth.php

<?php 
if (!isset($_SERVER['PHP_AUTH_USER'])) { 
    header('WWW-Authenticate: Basic realm="My Realm"'); 
    header('HTTP/1.0 401 Unauthorized'); 
    echo 'Text to send if user hits Cancel button'; 
    exit; 
} else { 
    echo "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>"; 
    echo "<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>"; 
} 
?> 

當你擁有用戶名/密碼,您只需要讓你的LDAP代碼在使用這些憑證的LDAP認證用戶。

另一種方法可以是使用可以使用LDAP後端來驗證用戶的HTTP服務器。例如,請參閱Apache的此文檔:https://httpd.apache.org/docs/2.4/mod/mod_authnz_ldap.html