How to remove a port number from the end of an IIS URL?

In IIS, I noticed that when using the default ports ( 80 for http and 443 for https), the port number does not appear at the end of the URL in your browser. However, if you use a different port, it will be displayed.

Example: The default port creates a link: http://www.example.com

The user port creates a link: http://www.example.com:8301

Is there a parameter that you can change to make the port (in this case : 8301 ) not display without using the default values?

+4
source share
1 answer

80 - HTTP-. http://example.com= http://example.com:80

443 - HTTPS. https://example.com= https://example.com:443

, URL-.
IIS - HTTP . , http://example.com 8301, , . , 80 , .

, - http://example.com URL-, , - 8301 80 .

+7

All Articles