Bueno me respondo a mi solo,
lo resolvi tocando los .conf del apache en este engrendo de Ampps
lo que hay que hacer es comentar un codigo que pisa cualquier otra configuracion personalizada de virtualhost, el archivo es D:\Ampps\conf\httpd.conf
Código Apache:
Ver original#### Localhost VirtualHost ####
#### EDITADO ####
# ANULO ESTE CODIGO POR QUE PISA TODAS LAS APLICACIONES PERSONALIZADAS
#<VirtualHost 127.0.0.1:80>
#<Directory "{$path}/www">
# Options FollowSymLinks Indexes
# AllowOverride All
# Order deny,allow
# allow from All
#</Directory>
#ServerName localhost
#ServerAlias localhost 127.0.0.1
#ScriptAlias /cgi-bin/ "{$path}/www/cgi-bin/"
#DocumentRoot "{$path}/www"
#ErrorLog "{$path}/apache/logs/error.err"
#CustomLog "{$path}/apache/logs/access.log" combined
#</VirtualHost>
#APLICACIONES PERSONALIZADAS
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
#
#DINEMOSJUNTOS
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName proyecto.local
ServerAlias *.proyecto.local
DocumentRoot "D:/Ampps/www/proyecto/site/"
<Directory "D:/Ampps/www/proyecto/site/">
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /php/ "D:/Ampps/php/"
AddType application/x-httpd-php .php
# For PHP 5
Action application/x-httpd-php "/php/php-cgi.exe"
</VirtualHost>