.htaccess url encoded string not passing to page correctly

微笑、不失礼 提交于 2019-12-08 07:51:25

问题


I have a rewrite rule in .htaccess

RewriteRule ^page/(.*)$ my-php-page.php?cid=$1

I am passing a encoded string which contains characters like = and + - this is the encoded string;

V1ihnKpip6WpnY7Wm5zn2+6YUtLf2KCh4eKY

When in the complete URL it's

http://www.example.com/my-php-page.php?cid=V1ihnKpip6WpnY7Wm5zn2+6YUtLf2KCh4eKY

now this doesn't work because of the + sign. So I want to send the cid urlencoded which then becomes;

http://www.example.com/my-php-page.php?cid=V1ihnKpip6WpnY7Wm5zn2%2B6YUtLf2KCh4eKY

The + sign becomes %2B. This works great, except when I try this through the RewriteRule in .htaccess - it doesn't work. So the URL would be

http://www.example.com/page/V1ihnKpip6WpnY7Wm5zn2%2B6YUtLf2KCh4eKY

The mypage.php file actually receives the cid as V1ihnKpip6WpnY7Wm5zn2 6YUtLf2KCh4eKY for some reason replacing %2B with a blank space.

Any ideas why it may be doing that? And how can I fix it. Many thanks for the help.

EDIT

I just found this solution - PHP $_GET var with urlencode and "&" bug - but I was wondering if there was a more elegant solution in .htaccess than having to urlencode the string twice?


回答1:


Try adding the B rewrite flag. This flag tells mod_rewrite to escape backreferences, the documentation says this:

_rewrite has to unescape URLs before mapping them, so backreferences will be unescaped at the time they are applied. Using the B flag, non-alphanumeric characters in backreferences will be escaped.

Since the % character is reserved for backreferences to groupings matched in RewriteCond statements preceeding the RewriteRule, mod_rewrite treats them differently and could end up attempting to replace the %2 with a blank backreference.

So your rule should look like this:

RewriteRule ^page/(.*)$ my-php-page.php?cid=$1 [B]



回答2:


If I understood right, to redirect this URL:

http://www.example.com/page/V1ihnKpip6WpnY7Wm5zn2+6YUtLf2KCh4eKY to this one

http://www.example.com/my-php-page.php?cid=V1ihnKpip6WpnY7Wm5zn2+6YUtLf2KCh4eKY

RewriteEngine On
RewriteRule ^page/([^/]*)  http://www.example.com/my-php-page.php?cid=$1 [L]

The result is:

http://www.example.com/my-php-page.php?cid=V1ihnKpip6WpnY7Wm5zn2+6YUtLf2KCh4eKY

with no change in the parameter.



来源:https://stackoverflow.com/questions/13720650/htaccess-url-encoded-string-not-passing-to-page-correctly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!