I have application which I have hosted in IIS, I added it in SubDomain(AppCore) with separted ApplicationPoolThe Problem is .... It works fine in the server with the domain but outside Gives meThis page isn’t working right now "MyDomain" redirected you too many times.Try deleting your cookies.ERR_TOO_MANY_REDIRECTSNote that :-
The Project Works With Blazor and Dotnet 8
There are many projects in the same Domain but they work fine (DotnetFramework)
I already installed Hosting Bundle and Dotnet 8 SDKs
There are shared Configuration File with configEncKeyAes
When I inspect it gives me only No content available because thisrequest was redirected IIS
This is My Cors
app.UseCors(builder =>{builder.AllowAnyOrigin().AllowAnyMethod().SetIsOriginAllowed(origin => true).AllowAnyHeader();});_
I tried Checking Permissions of the folder but another application folder in the same domain with different subdomain works with the same persmissionsEdit
Itried All Jalpa's advices
try to delete cookie and cache and try again to access the site with no hope
make sure you do not have any url rewrite rule set up in the iis which is causing this redirect But am not experienced so here is my url rewrite
![enter image description here]()
)enable iis failed request tracing to get more detail about the issue and also am not experienced so here is my failed request tracing
-enable application logging and also check that added in my codelike that in Program.csapp.UseExceptionHandler("/Home/Error");

