I am trying to run an ASP.NET MVC project on the development server, and then access it externally. I have set the port to be 8010 each time the development server runs.
Currently, it works fine if I go to http://localhost:8010
. However, if I try to access it from a different computer on the network, via http://128.11.53.104:8010
(where the middle bit is my computer's IP address), then it gives me the error: HTTP Error 400. The request hostname is invalid
.
What do I need to do such that the development server can be accessed externally? Thanks.