Reputation: 19
I have hosted my application on server port 99 so the directory is 10.74.16.153:99 or swcoefisbom01:99
but instead to show the portnumber in the web address i want to shoe like swcoefisbom01/myapp
Upvotes: 0
Views: 633
Reputation: 21
I think you might be mixing path and port number. For a http request, the default port number is 80 (443 for https), and unless you have specified the port number explicit in your url, any client (browser etc) will be using port 80. So, if you're bound to use port 99, you're bound to also include the port number in your URL.
To make a sub path in iis, you can either make a folder on the file structure under the root of your site, or you can add a virtual directory from IIS manager
Upvotes: 1