i need help with correct configuring my httpd-vhosts.conf. I'm using xampp and it's default vhost configs:
<VirtualHost *:80>
ServerAdmin postmaster@myhost
DocumentRoot "D:/xampp/htdocs/myhost"
ServerName myhost
AllowEncodedSlashes NoDecode
ErrorLog "logs/myhost.localhost-error.log"
CustomLog "logs/myhost.localhost-access.log" combined
</VirtualHost>
I want to config it so, that it will use this mask - IP/host, for example:
http://199.99.99.9/my-host1
http://199.99.99.9/my-host2
#199.99.99.9 is my IP
Any help guys will be awesome.