Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: REDIRECT_URL is garbled |
|
Author |
|
spser
Joined: 29 Aug 2016 Posts: 97
|
Posted: Mon 14 Mar '22 15:28 Post subject: REDIRECT_URL is garbled |
|
|
Code: |
[REMOTE_PORT] => 14605
[REDIRECT_URL] => /house/kw����1��/
[GATEWAY_INTERFACE] => CGI/1.1
[SERVER_PROTOCOL] => HTTP/2.0
[REQUEST_METHOD] => GET
[QUERY_STRING] =>
[REQUEST_URI] => /house/kw%B3%C7%CA%D01%BA%C5/
[SCRIPT_NAME] => /index.php
[PHP_SELF] => /index.php
[SERVER_SOFTWARE] => Apache/2.4.52 (Win64)
|
mod_fcgid/2.3.9 OpenSSL/1.1.1m PHP/8.1.3 SVN/1.14.1
---------------------------
Code: |
RewriteRule ^(.*)$ index.php [QSA,NC,L]
|
This is a very simple pseudo static that can be accessed when accessing the specified url.
REDIRECT_URL is garbled, please advise. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 14 Mar '22 15:42 Post subject: |
|
|
� is the correct ASCII value for %B3. Yes, it should be ³.
Is the page you are created returned as UTF-8? |
|
Back to top |
|
spser
Joined: 29 Aug 2016 Posts: 97
|
Posted: Mon 14 Mar '22 16:37 Post subject: |
|
|
index.php confirms it is utf-8 encoded |
|
Back to top |
|
spser
Joined: 29 Aug 2016 Posts: 97
|
Posted: Sun 20 Mar '22 17:12 Post subject: |
|
|
help me |
|
Back to top |
|
tangent Moderator
Joined: 16 Aug 2020 Posts: 348 Location: UK
|
Posted: Mon 21 Mar '22 19:17 Post subject: |
|
|
Your RewriteRule flags are missing the NE (no escape) option, which shows in your PHP [REQUEST_URI] being hex coded.
I'm not that familiar with PHP configuration, but it looks like each %xx is then being further encoded in the {REDIRECT_URL].
So what happens if you add the NE flag to the Apache configuration? |
|
Back to top |
|
|
|
|
|
|