We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting application.path to /something the following redirect doesn't work:
application.path
/something
{ get("/success", () -> "OK"); get("/redirect", () -> Results.redirect("/success")) }
The /redirect path doesn't work bc context path is missing :S
/redirect
As a workaround we need to set/specify the context path:
get("/redirect", () -> Results.redirect("/something/success"))
But this shoud be done automatically
The text was updated successfully, but these errors were encountered:
78819fe
No branches or pull requests
Setting
application.path
to/something
the following redirect doesn't work:The
/redirect
path doesn't work bc context path is missing :SAs a workaround we need to set/specify the context path:
get("/redirect", () -> Results.redirect("/something/success"))
But this shoud be done automatically
The text was updated successfully, but these errors were encountered: