Hi @dwood1,
Welcome back to the Auth0 Community!
The reason why you might be getting this behavior is because when logging out of an application it will generally redirect to the first URL from the Allowed Logout URLs List ( see Allowed Logout URLs List Not Returning the Correct Value ).
Redirects can be set accordingly after a user signs in or signs out of an application.
-
After a user signs is, you will have to make sure that the
redirect_uri
parameter is used properly as a callback URL. For this you can check out the Redirect Users after login documentation. -
You can also implement a
returnTo
URL query string parameter. Our documentation on the matter - Redirect Users with Alternative Logout mentions that you can redirect users to a specific URL.
You can check out this community articles about this:
-
Redirect Users after Logout - shows how to set the
returnTo
parameter -
Redirect after Logout in React SPA - an example in a React SPA App
I hope this helps, and if you have further questions please let me know.
Best regards,
Remus