尝试使用密码设置对我的apache 2.46的访问权限,但不为本地网络设置访问权限。下面的代码不起作用。尽管我的访问设备处于正确的IP范围内,即使使用单个IP代码也无法正常工作。 Apache一直在我的本地网络上要求密码/我的代码出了什么问题?
<Directory /var/www/mysite/>
Options FollowSymLinks
AllowOverride none
Order allow,deny
Allow from 192.168.1.1/24
Deny from all
AuthType Basic
AuthName "Secure Content"
AuthBasicProvider file
AuthUserFile /etc/apache2/passwords
Require valid-user
Satisfy any
</Directory>