如何使用 HTTPD 中的 AuthConf 修复 500 内部服务器错误?

如何使用 HTTPD 中的 AuthConf 修复 500 内部服务器错误?

这是一个新安装。我使用了sudo apt-get install libapache2-mod-auth-mysql phpmyadmin

如果我将以下代码放入我的 httpd 配置文件中,我会收到 500 内部服务器错误。知道我为什么会收到此错误吗?我的目录路径或密码路径有问题吗?

这是httpd.conf:

 <Directory /usr/share/phpmyadmin>
 Options FollowSymLinks
 DirectoryIndex index.php
 # AllowOverride AuthConfig
 AuthType Basic
 AuthName "Restricted Files"
 AuthUserFile /usr/share/password/.htpasswd
 Require valid-user
 </Directory> 

答案1

检查您的网络服务器错误日志。它们应该详细说明 500 错误的具体情况。

相关内容