需要通过基于 IP 的 htaccess 在 apache 2.4 中启用索引。
例如,IP 192.168.xx
我尝试将指令放在 apache2.conf 文件中,例如:
<Directory /var/vhosts/lubrigard.com>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
然后
<Directory /var/vhosts/lubrigard.com>
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require ip 192.168
</Directory>
但是,对于任何其他 IP,它都拒绝对该文件夹进行任何访问。
因此,我在站点范围内禁用了索引,并希望放置一个 .htaccess 文件来启用内部 IP 地址的索引。除非有人可以告诉我如何在 apache2.conf 文件中执行此操作。