我有一个基于DOTNET Core 2.1开发的应用程序。这个应用程式可以在开发环境中正常运作,例如在Visual Studio上,所有网址都可以浏览。
但是它的已发布副本在IIS(版本10)上不起作用。在浏览时,默认URL被点击并显示视图。但是在浏览项目中可用的任何其他URL时显示Http 404错误。 配置详细信息 在IIS上,我可以看到AspNetCoreModuelV2可用。
我的Web.Config文件的内容是
<configuration>
<location path="." inheritInChildApplications="false">
<add name="aspNetCore" path="*" verb="*" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\WebApplication3.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
</system.webServer>
</location>
</configuration>
谢谢