Failed to load resource: the server responded with a status of 401 (Unauthorized) /App/AngularJS/angular.min.js

后端 未结 5 774
无人及你
无人及你 2021-02-04 03:37

I am having the following error:

Failed to load resource: the server responded with a status of 401 (Unauthorized) http://localhost/App/AngularJS/angular.min.js
         


        
5条回答
  •  渐次进展
    2021-02-04 04:13

    When servers respond with access denied message (401 Unauthorized access), it means that the anonymous IIS user account is unable to access the resources because of permission issues.

    By default, IUSR account is used for anonymous user.

    All you need to do is:

    IIS ->
    Authentication --> Set Anonymous Authentication to Application Pool Identity.

    Problem solved :)

提交回复
热议问题