localhost lookup fails, browser tries www.localhost.com instead - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T10:53:05Zhttp://stackoverflow.com/feeds/question/657383http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/657383/localhost-lookup-fails-browser-tries-www-localhost-com-instead1localhost lookup fails, browser tries www.localhost.com insteadMaen2009-03-18T08:35:08Z2009-11-19T15:30:59Z
<p>I used to run web applications all the time on my laptop, no problems, I am using VWD 2008 Express, i have the latest framework, Windows Vista Home Basic...etc..
Now, when ever i try to run a website, or even chose to Show a Page in Browser from Within VWD, the browser (both IE and Firefox) keeps looking for www.localhost.com...</p>
<p>I tried to copy the address of and paste it directly in the title bar, nothing, same problem i tried to get that address from the balloon notification (the one that pops up when you run any ASP.net project), still nothing happens...</p>
<p>My colleague is facing the same problem, but for him, he can simply copy and paste the url in the address bar, but its not working with me....Heeeeeellllllllllllllllp</p>
http://stackoverflow.com/questions/657383/localhost-lookup-fails-browser-tries-www-localhost-com-instead/657394#6573945Answer by schnaader for localhost lookup fails, browser tries www.localhost.com insteadschnaader2009-03-18T08:41:21Z2009-03-18T08:41:21Z<p>Check your <a href="http://en.wikipedia.org/wiki/Hosts%5Ffile" rel="nofollow">hosts file</a>, it should be redirecting localhost to 127.0.0.1 and nothing else. The entry that will cause this error should look like this:</p>
<pre><code>127.0.0.1 www.localhost.com
</code></pre>
<p>If you find this, remove it or change www.localhost.com to localhost.</p>
<p>You can also try to post one of these in the adress bar:</p>
<pre><code>127.0.0.1
http://localhost
</code></pre>
<p>Note that the hosts file is a popular victim of viruses, so if is has been modified, you might run a check on viruses.</p>
<p>Also see the <a href="http://forums.asp.net/t/1232820.aspx" rel="nofollow">discussion here</a>.</p>
http://stackoverflow.com/questions/657383/localhost-lookup-fails-browser-tries-www-localhost-com-instead/657397#6573971Answer by RBerteig for localhost lookup fails, browser tries www.localhost.com insteadRBerteig2009-03-18T08:41:58Z2009-03-18T08:41:58Z<p>A couple of random things to check...</p>
<ul>
<li><p><code>localhost</code> is the conventional name for the IP address <code>127.0.0.1</code>. If that address doesn't work, then you have a network configuration problem.</p></li>
<li><p>There will be a <code>hosts</code> file somewhere, probably in somewhere like <code>C:\Windows\System32\Drivers\Etc\hosts</code> which should usually contain only that definition for localhost. If it has more names in it and you didn't put them there, then you have another problem entirely.</p></li>
</ul>
http://stackoverflow.com/questions/657383/localhost-lookup-fails-browser-tries-www-localhost-com-instead/739586#7395862Answer by Emin for localhost lookup fails, browser tries www.localhost.com insteadEmin2009-04-11T05:47:21Z2009-04-11T05:47:21Z<p>If that also doesn't work, open up nod32 (you probably have it installed on your system if the above methods don't work) go to advanced setup, on the left menu, select protocol filtering, and select HTTP and POP3 ports... ;)</p>
http://stackoverflow.com/questions/657383/localhost-lookup-fails-browser-tries-www-localhost-com-instead/1749903#1749903-1Answer by alex for localhost lookup fails, browser tries www.localhost.com insteadalex2009-11-17T16:06:40Z2009-11-17T16:06:40Z<p>Thanks for the nod32 solution :)</p>
http://stackoverflow.com/questions/657383/localhost-lookup-fails-browser-tries-www-localhost-com-instead/1764113#17641130Answer by Nathan Long for localhost lookup fails, browser tries www.localhost.com insteadNathan Long2009-11-19T15:30:59Z2009-11-19T15:30:59Z<p>There is also the forehead-slapping possibility that your web server is not currently running. :)</p>