Testing websites
In this recipe, we will test three websites inside IIS 10.0: mysite.com, v2mysite.com, and v4mysite.com. We already created some web files, which we uploaded to the website folders.
Getting ready
You already have a well-configured IIS 10.0 server instance and websites (mysite.com, v2mysite.com, and v4mysite.com). We've also configured and pre-uploaded website application files or HTML pages. You may need an administrator user account, depending on the changes to be made.
How to do it...
- Open a browser and type in
mysite.com
:

- Look at the address bar; it by default displays
http://mysite.com
. Let's testv2mysite.com
in the next step. - Type the URL
v2mysite.com
in the address bar:

- Here you can see the
Demo.html
page, which is the default page we configured in theDefault Document
settings. - Type the URL
v4mysite.com
in the address bar:

- We have the IIS 10 server, which has the IP address
172.16.15.60
. We are running two websites,mysite.com
andv2mysite.com
, on IP172.16.15.60
. We added...