views:

38

answers:

3

Basically i want to be able to type in http://mysites and it show me my localsite rather than typing in http://localhost:8080/?

I intend to do it a few times like http://localhost:8181 to http://mysites2

I thought you could do it via hosts file?

This is all localy on my machine

A: 

You can't set port with hosts file... You'll just need to access the sites as http://mysites:8080, mysites:8081, etc.

To do that, add an entry to your hosts like

127.0.0.1 mysites

(hosts is typically located at C:\WINDOWS\system32\drivers\etc\hosts)

Thanks for all the answers, I'll give them a try
ivordesign
A: 

Your hosts file would look like:

127.0.0.1 mysites
127.0.0.1 mysites2

This would let you set up bookmarks like http://mysites:8080 and http://mysites2:8081.

The next most difficult would be to set up HttpRedirection with a server on port 80. This would let you type http://mysites, and have it redirect to http://mysites:8080, which you would use from that point on.

To fully get what you want, you would need a reverse proxy set up on port 80. That's too big of a topic to cover here, but there's plenty of information available if you google it.

Karl Bielefeldt
A: 

As stated before, you can edit the hosts file (or update a local DNS server), so that the names point to the desired ip addresses. Some browsers have trouble with cookies when there's no DOT in the name, so you may want to do something like mysites.local or mysites.ivor

If there's something else running on port 80, You have to configure that server to proxy the requests to IIS (on port 80). If you can't run anything on port 80, you can configure the names, but you'll still need the port at the end.

If only IIS is running, you can set this up by using virtual hosts. You add a binding to the IP address, on port 80, to the DNS name you specified. You can run them all on one port as long as they have different host names.

AlReece45
Decide to go down the virtualhost route, and have setup multiple url. Thanks for the help
ivordesign