访问提供此请求所需的资源时发生错误。

时间:2013-12-19 13:53:59

标签: asp.net iis

我正在尝试在localhost中设置一个asp.net网站。 Fitst,我启用了IIS服务器并创建了网站 C:\ inetpub \ wwwroot文件夹并运行以确保正确设置IIS。在这种情况下,我使用了我从visualstudio IDE创建的现有网站。一切都很完美。在这种情况下,我大量使用以下文章。 http://forums.asp.net/t/1689133.aspx

现在问题是我有一个从远程服务器下载的网站,我想在localhost中托管它。 当我比较我下载的网站和工作网站时,我发现有些文件丢失了。但是,远程服务器上的站点工作正常。

我没有看到bin文件夹,并且web.config文件中没有太多信息。

以下是web.config文件中的代码

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <staticContent>
            <mimeMap fileExtension=".json" mimeType="application/json" />
        </staticContent>
    </system.webServer>
    <system.web>
        <authorization>
            <deny users="?" />
        </authorization>
    </system.web>
</configuration>

当我尝试执行上一个网站所做的相同过程并尝试使用浏览器时,我会关注错误。

Access is denied.

Description: An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL. 

Error message 401.2.: Unauthorized: Logon failed due to server configuration.  Verify that you have permission to view this directory or page based on the credentials you supplied and the authentication methods enabled on the Web server.  Contact the Web server's administrator for additional assistance.

错误在哪里?如何解决这个问题?如果您想了解更多信息,请告诉我们?

3 个答案:

答案 0 :(得分:9)

我建议您首先允许WebConfig中的所有用户

<system.web>
    <authorization>    
        <allow users="*" />
    </authorization>    
</system.web>

编辑:正如David Thompson所提到的,这是非常不安全的。仅用于取消阻止测试示例代码方案。请不要生产。

答案 1 :(得分:2)

这是一个老问题,但答案严重不安全,您应该添加并启用您需要的身份验证提供程序,而不是提供任何人授权。

添加提供者:

https://www.iis.net/configreference/system.webserver/security/authentication/windowsauthentication/providers/add

启用方法:

  1. 在Web服务器上打开IIS管理控制台

  2. 展开“站点”文件夹

  3. 双击“IIS - 身份验证”选项

  4. 在身份验证下,选择匿名身份验证,然后单击右侧“操作”窗格中的“禁用”

  5. 对于Windows身份验证:选择Windows身份验证,然后单击右侧“操作”窗格中的“启用”

  6. 对于基本身份验证:选择基本身份验证,然后单击右侧“操作”窗格中的“启用”

答案 2 :(得分:0)

解决这个问题的原因是我在应用池的高级设置中启用了32位应用程序。

  1. 打开IIS
  2. 展开服务器,然后点击Application Pools窗格中的Connections
  3. 选择您的应用程序池,然后单击Advanced Settings...
  4. General切换Enable 32-Bit ApplicationsTrue