Protecting the "/" directory in Apache.
Posted: 2020/06/26 06:55:18
Hello,
What id the difference between these two configuration:
And:
Thank you.
What id the difference between these two configuration:
Code: Select all
<Directory />
AllowOverride none
Require all denied
</Directory>
Code: Select all
<Directory />
Options None
Order allow,deny
Allow from all
</Directory>