i have multiple project in my computer in htdocs i want to access them from other computer on same line. i have change all setting in hosts files
127.0.0.1 wheels.dev
127.0.0.1 property.dev
127.0.0.1 myproperty.dev
and also change in http.conf
<VirtualHost *:80>
#ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "C:/xampp/htdocs/wheel/"
ServerName wheel.dev
ServerAlias www.wheel.dev
##ErrorLog "logs/dummy-host2.example.com-error.log"
##CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
#ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "C:/xampp/htdocs/property/public"
ServerName property.dev
ServerAlias www.property.dev
##ErrorLog "logs/dummy-host2.example.com-error.log"
##CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
#ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "C:/xampp/htdocs/myproperty/public"
ServerName myproperty.dev
ServerAlias www.myproperty.dev
##ErrorLog "logs/dummy-host2.example.com-error.log"
##CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
when i try to access the whell.dev or my property.dev all the it only myproperty website not any other please help me out what should i have to change any more in my project Thank you