如何在 ProxyPass 中处理查询字符串?

如何在 ProxyPass 中处理查询字符串?

我想要像这样的 ProxyPass

ProxyPass /forum_feedhttps://example.com/rest/forum_feed?type=atom

问题是 ProxyPass 不会处理查询字符串,那么我可以编写什么重写规则来欺骗它?

答案1

这就是我最终的做法。

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/forum_feed
RewriteRule ^(.*)$ https://example.com/rest/forum_feed?type=atom [P]

相关内容