gpt4 book ai didi

apache2 - apache httpd.conf 中带有问号字符的问题

转载 作者:行者123 更新时间:2023-12-04 14:42:52 26 4
gpt4 key购买 nike

我的 httpd.conf 文件中有以下行

ProxyPass/东西 http://localhost:9080/servlet/StubEndpoint?stub=stub

系统响应

请求的资源 (/servlet/StubEndpoint%3Fstub=stub/) 不可用,即它替代了 ?与 %3F。我该如何解决这个问题?那个问号似乎被“%3F”代替了,我回来了 404

最佳答案

来自 ProxyPass 的文档:

url is a partial URL for the remote server and cannot include a query string.

在您的示例中,stub=stub 是查询字符串。 %3F 替换是作为 URL encoding 的一部分完成的.

您可以代理到一个 URL,然后将其重定向到最终目的地(使用查询字符串),例如:

ProxyPass /something http://localhost:9080/proxy
RewriteEngine on
RewriteRule ^/proxy /StubEndpoint?stub=stub

这应该会导致任何以/something 开头的 URL 返回到 StubEndpoint?stub=stub 的重定向。但是我自己还没有测试过。

关于apache2 - apache httpd.conf 中带有问号字符的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4115652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com