Authentication

Apache 不載入/工作 - 即使使用 htaccess 身份驗證

  • May 20, 2011

我已經設置了我的 VPS,在下面安裝了 httpdyum install httpd並重新啟動了伺服器。當我添加 a .htaccessto /var/www/htmlnothing 時,它在 htaccess 文件中需要身份驗證並且除了讓我可以訪問“受保護”目錄之外不顯示任何內容。

AuthType Basic
AuthName "Private"
AuthUserFile /var/www/html/.htpasswd
Require valid-user

存在,.htpasswd但仍然沒有任何效果。我還嘗試了一個簡單的重寫規則,但它甚至不起作用。

你如何讓 apache 工作(或正常執行)?除了apache之外,一切都在執行並且工作正常。

我的伺服器正在執行Centos 5 x86_64 Standard

您需要允許覆蓋以使 htaccess 工作。

看到這個http://httpd.apache.org/docs/2.0/mod/core.html 看“AllowOverride”

引用自:https://serverfault.com/questions/271887