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
Because we have an app name after the hostname and current version redirect with error.
Our url: http://host-name/app-name/path
Redirect url in current version: http://host-name/path
Add generation for redirect as in protect.js
const host = request.hostname const headerHost = request.headers.host.split(':') const port = headerHost[1] || '' const protocol = request.protocol const redirectUrl = protocol + '://' + host + (port === '' ? '' : ':' + port) + cleanUrl
No response
#391
The text was updated successfully, but these errors were encountered:
I am in the same situation. This issue with PR (#391) fixing it is open for a very long time. Is it planned that this will be merged at some point?
Sorry, something went wrong.
No branches or pull requests
Description
Function postAuth can't redirect to full cleanUrl.
Because we have an app name after the hostname and current version redirect with error.
Our url:
http://host-name/app-name/path
Redirect url in current version:
http://host-name/path
Add generation for redirect as in protect.js
Discussion
No response
Motivation
No response
Details
#391
The text was updated successfully, but these errors were encountered: