The only <Directory>
I have among all Apache config files is:
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Actually the real directory on server is /var/www/html/
. The directory /var/www/
has no file, but only the subdir html
.
So accessing the root of my website should fail, because /var/www/index.html
doesn't exist. But it doesn't fail, the content of /var/www/html/index.html
is displayed, even if I didn't specify it in the config file.
Why?