Buenas, tengo que configurar mi xampp para que pueda usar otro dominio.
mi configuracion era la siguiente:
arhivo system32/drivers/etc/hosts
Código:
127.0.0.1 localhost localhost.localdomain
archivo httpd-vhosts
Código:
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
##<VirtualHost *:80>
## ServerAdmin [email protected]
## DocumentRoot /www/docs/dummy-host.example.com
## ServerName dummy-host.example.com
## ServerAlias www.dummy-host.example.com
## ErrorLog @rel_logfiledir@/dummy-host.example.com-error_log
## CustomLog @rel_logfiledir@/dummy-host.example.com-access_log common
##</VirtualHost>
##<VirtualHost *:80>
## ServerAdmin [email protected]
## DocumentRoot /www/docs/dummy-host2.example.com
## ServerName dummy-host2.example.com
## ErrorLog @rel_logfiledir@/dummy-host2.example.com-error_log
## CustomLog @rel_logfiledir@/dummy-host2.example.com-access_log common
##</VirtualHost>
asi yo puedo poner
http://localhost/ y me muestra la pagina de inicio del xampp o si ponia localhost.localdomain/wpmu me mostraba mi wpmu
La cuestion es que ahora necesito entrar a una aplicacion por
http://myperfectcolor.localhost
intente con esta configuracion
arhivo system32/drivers/etc/hosts
Código:
127.0.0.1 localhost localhost.localdomain
127.0.0.1 localhost myperfectcolor.localhost
archivo httpd-vhosts
Código:
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
##<VirtualHost *:80>
## ServerAdmin [email protected]
## DocumentRoot /www/docs/dummy-host.example.com
## ServerName dummy-host.example.com
## ServerAlias www.dummy-host.example.com
## ErrorLog @rel_logfiledir@/dummy-host.example.com-error_log
## CustomLog @rel_logfiledir@/dummy-host.example.com-access_log common
##</VirtualHost>
##<VirtualHost *:80>
## ServerAdmin [email protected]
## DocumentRoot /www/docs/dummy-host2.example.com
## ServerName dummy-host2.example.com
## ErrorLog @rel_logfiledir@/dummy-host2.example.com-error_log
## CustomLog @rel_logfiledir@/dummy-host2.example.com-access_log common
##</VirtualHost>
##<VirtualHost *:80>
## ServerAdmin [email protected]
DocumentRoot "D:/xampp/htdocs/myperfectcolor"
ServerName myperfectcolor.localhost
## ErrorLog @rel_logfiledir@/dummy-host2.example.com-error_log
## CustomLog @rel_logfiledir@/dummy-host2.example.com-access_log common
##</VirtualHost>
pero en si ahora pongo
http://localhost en vez de salirme la pagina de inicio del xampp me sale el index de myperfectcolor y no puedo entrar a ninguna otra pagina que tenga en el servidor.
Como tengo que configurar o que me falta configurar para que si yo quiero entrar a
http://localhost/cualquierpagina no me mande al index de myperfectcolor y si cuando quiero entrar por
http://myperfectcolor.localhost
desde ya muchas gracias