在我的 Apache 配置文件httpd.conf
中,我有:
...
<Directory />
AllowOverride none
Require all denied
</Directory>
...
<Directory "D:/xampp/htdocs">
Require all granted
</Directory>
...
我通过查找此问题了解到,我应该在某处插入以下几行:
order allow,deny
allow from 127.0.0.1
deny from all
我不知道的是,与我的配置文件中已有的内容相关的确切位置。例如,我该如何处理“要求所有已授予”行?我是删除它,还是将这段代码粘贴到它上面?在它下面?其余的呢?