I'm using MAMP.
My httpd.conf:
NameVirtualHost *
<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *>
DocumentRoot "/Applications/MAMP/test"
ServerName test
</VirtualHost>
My hosts:
127.0.0.1 localhost test
On my local machine I can access the htdocs folder with "localhost" and 127.0.0.1 and the test folder with "test".
When I feed the browser of another device in my local network with the IP Address I get the htdocs folder.
How to access the test folder from other devices in my local network?