Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/07/2011, 16:52
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 1 mes
Puntos: 101
Respuesta: duda: un virtualhost sobreescribe al localhost?

Ok, de momento la solución fue hacer un servidor virtual según me explican en este hilo:
http://www.forosdelweb.com/f91/confi...7/#post3939191

Bajo windows, puse esto. No se si sea suficiente porque el ejemplo contiene más definiciones.
Cita:
<VirtualHost 127.0.0.1:80>
ServerAdmin webmaster@localhost
ServerName localhost
DocumentRoot /wamp/www/

<Directory /wamp/www/>
Options Indexes FollowSymLinks MultiViews
#AllowOverride None
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
En principio, funciona ok.