You are on page 1of 1

Editar o arquivo C:\Windows\System32\drivers\etc\hosts

Deverá ficar desta forma

# localhost name resolution is handled within DNS itself.


127.0.0.1 localhost
# ::1 localhost
127.0.0.1 www.teste.com.br
127.0.0.1 www.cataki.com.br
127.0.0.1 www.fragmentus.com.br

#ServerName localhost:80

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#

#DocumentRoot "c:/wamp/www/"

NameVirtualHost 127.0.0.1

<VirtualHost 127.0.0.1>
ServerName www.cataki.com.br
DocumentRoot "C:/wamp/www/cataki/"
</VirtualHost>

<VirtualHost 127.0.0.1>
ServerName www.fragmentus.com.br
DocumentRoot "C:/wamp/www/fragmentus/"
</VirtualHost>

<VirtualHost 127.0.0.1>
ServerName www.teste.com.br
DocumentRoot "C:/wamp/www/teste/"
</VirtualHost>

<VirtualHost 127.0.0.1>
ServerName localhost
DocumentRoot "C:/wamp/www/"
</VirtualHost>

You might also like