8

But it's fine when I'm using firefox,

and in IE I can also open the page via 127.0.0.1

Anyone knows how to fix it for IE?

user11671
  • 557
  • 2
  • 9
  • 13
  • 4
    What error message do you get? What result did you expect? – James Polley Jan 17 '10 at 09:03
  • 1
    Oh wow, THANK YOU for saying that you could connect using 127.0.0.1. I didn't think of that, and it's helped me get past this error at work. I LOVE YOU – clamum Jan 26 '17 at 21:16

5 Answers5

20

You should add http:// before localhost:port for IE. Unlike other browsers, IE needs to know what protocol is being used.

Simon Sheehan
  • 9,114
  • 12
  • 52
  • 71
Tarun
  • 301
  • 2
  • 2
  • Are you sure? I just tried typing only `localhost` and IE turned it to `http://localhost/` .. – Bibhas Jan 31 '12 at 19:06
  • 1
    Good habit is to include the protocol first; however if it is just `localhost` and no actual port number, you can usually just do what you stated and type `localhost` without issue. If you need port numbers though, you should used the proper protocol format. – zackrspv Feb 01 '12 at 00:58
2

Some things to try:

  • try adding the port to localhost: localhost:80 or localhost:8080

  • try checking proxy bypass settings for Internet Explorer (Tools -> Options), make sure it's set to proxy bypass for localhost

  • Check C:\windows\system32\drivers\etc\hosts and make sure the localhost entry is there

Jeff Atwood
  • 23,972
  • 30
  • 99
  • 120
1

Old thread, but I thought this may help someone.

Windows 7 Pro / IE 11

I had the exact same issue (http://localhost works in Chrome, and 127.0.0.1 worked in IE too). Tried various things like updating hosts file entry, disable ipv6 in network settings etc.. nothing worked.

Finally fixed by adding http://localhost to trusted site in IE Settings Internet Options>Security>Trusted sites. Make sure to un check the "Require Server verification (https).. " option when adding the trusted site address.

sb8000
  • 11
  • 1
0

If your local host uses default port(i.e 80) then it will resolve . If it uses different port then you will have to specify the protocol.

0

In my case, it is because there some add-ons that always go to search engine when I browse to my localhost. So I just disable this add-ons in Tools > Manage Add-ons > Click Search Provider > Set Default to Bing,

and my problem is gone.

Dalton
  • 1