如何让apache向ProxyPass URL添加静态查询参数?

如何让apache向ProxyPass URL添加静态查询参数?,apache,mod-rewrite,mod-proxy,proxypass,Apache,Mod Rewrite,Mod Proxy,Proxypass,我在apache中配置了一个代理: <VirtualHost *:8080> ProxyRequests off ProxyPreserveHost on ProxyPass "/api/" http:10.1.1.2:9090/api" ProxyPassReverse "/api/" http:10.1.1.2:9090/api" ProxyPass "/frames

我在apache中配置了一个代理:

<VirtualHost *:8080>
    ProxyRequests off
    ProxyPreserveHost on

    ProxyPass "/api/" http:10.1.1.2:9090/api"
    ProxyPassReverse "/api/" http:10.1.1.2:9090/api"

    ProxyPass "/frames/" https:10.1.1.3:7070"
    ProxyPassReverse "/frames/" https:10.1.1.3:7070"
我怎样才能做到这一点

http://apacheproxy.local:8080/frames/abc/1.jpg -> https://10.1.1.3:7070/abc/1.jpg?thing=789&that=this
http://apacheproxy.local:8080/frames/ef/gh/2.jpg -> https://10.1.1.3:7070/ef/gh/2.jpg?thing=789&that=this