查询字符串中有两个问号和两个与号?

发布于 2024-12-13 19:41:45 字数 826 浏览 0 评论 0原文

呃,我的查询字符串看起来像:

http://localhost/index.php?page=public&another=http://www.google.com?omg=tt&nop=asd

当然我用正则表达式将其重写为: 正则表达式: RewriteRule ^pass-([^=]*)=([^=]*)$ index.php?page=$1&another=$2 [L]

http://localhost/pass-url=http://www.google.com?omg=tt&nop=asd

(1)但是 url 变成:仅限http://www.google.com

如果我在没有正则表达式的情况下尝试使用此网址urlencode

http://localhost/index.php?page=public&another=http://www.google.com?omg=tt&nop=asd

它会回显:

http%3A%2F%2Fwww.google.com%3Fomg%3Dtt

(2)在这种情况下&nop=asd部分消失了。

那么如何使(1)起作用以及为什么(2)这样做呢? 最大的问题是如何在查询字符串中传递两个问题和&符号? 对于这种情况有什么建议吗?

Ech, my query string look's like:

http://localhost/index.php?page=public&another=http://www.google.com?omg=tt&nop=asd

And afcourse i rewrite it with regex to:
regex:
RewriteRule ^pass-([^=]*)=([^=]*)$ index.php?page=$1&another=$2 [L]

http://localhost/pass-url=http://www.google.com?omg=tt&nop=asd

(1)But then url becomes to: http://www.google.com only.

If i try urlencode with this url without regex:

http://localhost/index.php?page=public&another=http://www.google.com?omg=tt&nop=asd

it echo:

http%3A%2F%2Fwww.google.com%3Fomg%3Dtt

(2)In this case &nop=asd part gone.

So how to make (1) work and why (2) do this ?
The biggest question would be how to pass two question and ampersand in query string ?
Any suggestion regarding this situation ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稀香 2024-12-20 19:41:45

问题出在你的重写规则中。像这样:

RewriteRule ^pass-([^=]*)=([^=]*)$ hw.php?page=$1&another=$2 [L,QSA]

注意附加的 QSA 标志将确保保留原始查询参数。

Problem is in your rewrite rule. Have it like this:

RewriteRule ^pass-([^=]*)=([^=]*)$ hw.php?page=$1&another=$2 [L,QSA]

Note that additional QSA flag which will make sure to preserve original query parameters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文