当前位置: 首页 > 工具软件 > CoreHTTP > 使用案例 >

.net core项目配置IIS提示HTTP 错误 403.14 - Forbidden Web 服务器被配置为不列出此目录的内容。错误代码0x00000000

葛承德
2023-12-01

.net core项目配置IIS路径是项目根目录的bin文件夹

提示:HTTP 错误 403.14 - Forbidden Web 服务器被配置为不列出此目录的内容。

错误代码0x00000000

解决:

第一步:web.config

我的是net5.0, 我的项目bin目录是

\项目根目录\bin\Debug\net5.0

在这个文件夹下配置web.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\net5demo1.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>
<!--ProjectGuid: e28011f3-5b69-4327-9276-9c73e610a041-->

第二步:复制静态资源

我的是 \项目根目录\bin\Debug\net5.0

我们知道“wwwroot”是core项目的静态资源文件夹,我把“wwwroot”文件夹复制到上面路径下面

第三步:静态资源指向

1.打开 Startup.cs文件

2.找到Configure 方法

3.引入

using System.IO;
using Microsoft.Extensions.FileProviders;

4.找到 app.UseStaticFiles();修改为

 app.UseStaticFiles(new StaticFileOptions()
 {
 FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")) //执行文件下的wwwroot文件夹
});

app.UseStaticFiles()方法是配置读取静态文件的中间件

5.关闭IIS站点

6.生成

7.打开站点 ,刷新【正常】

 

 

 类似资料: