We can't reproduce such a problem. Redirecting occurs as expected. You can try debugging the Login method of the AccountController class. It ends with:
if (!string.IsNullOrEmpty(userName) && !string.IsNullOrEmpty(password))
{
var result = await signInManager.PasswordSignInAsync(userName, password, false, false);
if (result.Succeeded)
{
return Redirect($"~/{redirectUrl}");
}
}
The code return Redirect($"~/{redirectUrl}"); performs the redirect after login.
That's probably the cause. Try replacing the meta\login.json file with the one attached. It should include the steps required to propagate redirectUrl to the login action. login.json.zip (814 Bytes)