Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chrome wont let me access localhost (it google searches instead)

How can I disable chrome using address bar for google search?

I cant access localhost at 0.0.0.0:6000, because chrome thinks it's a google search and not an url

any ideas?

like image 361
Tarlen Avatar asked Mar 14 '15 15:03

Tarlen


1 Answers

Be sure you end the url with "/" symbol.

Try:

http://0.0.0.0:6000/

Instead of:

0.0.0.0:6000

like image 154
ycansener Avatar answered Sep 21 '22 17:09

ycansener