.net core项目配置IIS路径是项目根目录的bin文件夹
提示:HTTP 错误 403.14 - Forbidden Web 服务器被配置为不列出此目录的内容。
错误代码0x00000000
我的是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”文件夹复制到上面路径下面
using System.IO;
using Microsoft.Extensions.FileProviders;
app.UseStaticFiles(new StaticFileOptions()
{
FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")) //执行文件下的wwwroot文件夹
});
app.UseStaticFiles()方法是配置读取静态文件的中间件