Iis7.5 Express is bound to multiple websites

Source: Internet
Author: User

First, IIS expressis a graphic interface. iisexpress can be started when iisexpress.exe under the installation directory is started. To enable iisexpress without displaying a black window with the system, you can register it as a service (not tested yet)

Next, add a Website: After the installation is complete, the IIS express folder will be generated under the "My Documents" directory, and applicationhost. config will be opened in the config folder.

The site node is the website configuration node. Each website corresponds to one node.

<Site name = "MVC" id = "2" serverautostart = "true">
<Application Path = "/">
<Virtualdirectory Path = "/" physicalpath = "F: \ FTP \ portalwebsite"/>
</Application>
<Bindings>
<Binding protocol = "HTTP" bindinginformation = ": 80: demo.site.net"/>
<Binding protocol = "HTTP" bindinginformation = ": 80: localhost"/>
</Bindings>
</Site>

The sample code adds a website named MVC, ID is 2, path is the drive, and a Host Header of demo.site.net is added outside the default localhost. The test passes,

Study other nodes if you are interested.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.