-1

In the first place i should say that it might seem a bit weird but its a challenge to distinguish between the level of these configurations,for example ,say i want my localhost be accessible through abc.com, i know i should go through two steps:

1.use iis manager bindings

enter image description here

2.add abc.com to dns host file

127.0.0.1       abc.com

But is not clear for me level of these configs and what is each part's responsibility ?

Abolfazl
  • 1,592
  • 11
  • 32
  • **DO NOT post images of code, data, error messages, etc.** - copy or type the text into the question. [ask] – Rob Aug 31 '20 at 17:56

1 Answers1

0

In a complete url request, steps as follows

  1. User request abc.com.
  2. DNS is request for abc.com.(That is why add abc.com to dns host file)
  3. IP address for abc.com is returned.
  4. Browser send request to the IP address.
  5. IIS in server return site’s page.(That is why use iis manager bindings)

Complete request

Why to use host file

Bruce Zhang
  • 2,880
  • 1
  • 5
  • 11