Se eu modificar meu /etc/hosts
arquivo a partir disso:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
para isso:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 www.microsoft.com
Isso redirecionará qualquer tentativa de acesso www.microsoft.com
a 127.0.0.1
, bloqueando efetivamente o acesso a www.microsoft.com
. Isso funciona muito bem.
Agora, em vez de redirecionar para localhost, quero redirecionar para outro site, por exemplo, quero alterar meu /etc/hosts para ficar assim:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
www.google.com www.microsoft.com
No entanto, quando tento visitar www.microsoft.com
, ele nunca me redireciona para www.google.com
. Ele simplesmente vai direto para www.microsoft.com
e ignora o que eu fiz em /etc/hosts
.
Alguém sabe como consertar isso ou como isso pode ser alcançado?