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
if the script raises an exception has url like http://www.domain.com/path/to/my/script.html?foo=bar
HTTP_HOST = www.domain.com REQUEST_URI = /path/to/my/script.html?foo=bar QUERY_STRING = ?foo=bar
REQUEST_URI already contains QUERY_STRING. Reported URL is wrong: http://www.domain.com/path/to/my/script.html?foo=bar?foo=bar
I fix it replacing REQUEST_URI with SCRIPT_NAME.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if the script raises an exception has url like
http://www.domain.com/path/to/my/script.html?foo=bar
HTTP_HOST = www.domain.com
REQUEST_URI = /path/to/my/script.html?foo=bar
QUERY_STRING = ?foo=bar
REQUEST_URI already contains QUERY_STRING.
Reported URL is wrong: http://www.domain.com/path/to/my/script.html?foo=bar?foo=bar
I fix it replacing REQUEST_URI with SCRIPT_NAME.
The text was updated successfully, but these errors were encountered: