Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/01/2010, 08:07
tirengarfio
 
Fecha de Ingreso: septiembre-2008
Mensajes: 146
Antigüedad: 15 años, 7 meses
Puntos: 1
Añado un host virtual y no me sale la pagina para acceder al panel de contrl de XAMPP

Hola,

he instalado XAMPP y posteriormente he creado el siguiente host virtual:

Código:
<VirtualHost *:80> 
   ServerName rs.localhost 
   ServerAlias rs.com 
   DocumentRoot /opt/lampp/htdocs/rs/web 

   <Directory /opt/lampp/htdocs/rs/web> 
      AllowOverride All 
      Options MultiViews Indexes SymLinksIfOwnerMatch 
      Allow from All 
   </Directory> 


   Alias /sf /opt/lampp/htdocs/rs/lib/vendor/symfony/data/web/sf 
   <Directory "/opt/lampp/htdocs/rs/lib/vendor/symfony/data/web/sf"> 
    AllowOverride All 
    Allow from All 
   </Directory> 

</VirtualHost>
Tambien he añadido la siguiente linea en /etc/hosts

# Virtual Hosts
127.0.0.1 rs.localhost

Mi problema: al insertar en mi navegador "localhost" no me sale la pagina para acceder al panel de control de XAMPP (es una pagina con el logo de XAMPP y varios enlaces que dicen "Español", "English",...)

Alguna idea?

Un saludo

Javi