I can deploy an ASP.NET 6 web app to IIS on Windows 2019 Server. All is working.
The default web.config is generated and exist in the root:
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\TestWebApp.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
</system.webServer>
Question
I would like to have a /blog folder and I would like deploy a PHP application there. How can I explain to IIS to not pass those request to the AspNetCoreModuleV2 handler, instead pass those requests to the PHP handler? (url rewrite module is already installed)