Having XAMPP issues here. Im running a dev env locally and a test server. DHCP/DNS/test. exist on the same server and requests with dev. route to my local machine. The PROBLEM: whenever i request a dev.* url it gets routed to my local machine properly but /xampp/ gets appended to the url and i get the xampp default landing page.
***vhost example***
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "C:\Domains\com.example"
<Directory "C:\Domains\com.example">
Require all granted
</Directory>
ServerName dev.example.com ***2 server names so i dont modify when i commit to server
ServerName test.example.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
Anyway, not sure exactly where my problem lies... anyone have any suggestions?