I've just installed an apache server on Ubuntu, everything went well and I can access the starting page. However, I want to create another page which is located in /var/www/test. I want to be able to access it via address http://xxx.xxx.xxx.xxx/test. I've created the directory, inserted the html file changed my config to this:
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/test>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
But unfortunately, when I try to access this page I get an error: Not Found The requested URL was not found on this server.
Apache/2.4.29 (Ubuntu) Server
What am I doing wrong here?