IIS Binding with windows authentication

后端 未结 3 980
南笙
南笙 2021-02-01 05:50

I have a local website (http://localhost/testsite) with Windows Authentication, that works well.

Now I changed the binding of the site to an URL (http://testsite.blablab

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 06:16

    Windows has a security feature for doing loopback checks, which is designed to help prevent reflection attacks on your computer.

    When you use a custom host header to browse a local web site that is hosted on a computer running IIS you will receive this error message if the web site uses Windows authentication and has a name that is mapped to the local loopback address.

    There are two methods to work around this issue:

    1) Specify host names, or

    2) Disable the loopback check

    Microsoft KB Article ID: 896861

提交回复
热议问题