Hi,
You can write a middleware to intercept the request and redirect to the Index page
For example:
app.Use(async (context, next) =>
{
if(context.Request.Path.ToString().Contains("account/manage", StringComparison.InvariantCultureIgnoreCase))
{
context.Response.Redirect(".....");
return;
}
await next.Invoke();
});
Or you can share a new project that can reproduce the problem with me, I can check it. shiwei.liang@volosoft.com
Hi,
Could you share the full steps to reproduce the problem? I will check it.
BTW, What version of ABP CLI are you using?
Hi,
Could you dotnet clean
and dotnet build /graphBuild
command?
Hi,
There is no team members
text in the ABP module, this looks like your own code
I refunded your ticket.
Hi,
You can create an issue in Blazorise https://github.com/Megabit/Blazorise/issues/new/choose