问题描述
我在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"
我想让apache通过代理规则之一将查询字符串?thing=789&that=this
添加到代理的末尾,而不会暴露给用户:
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
我该如何实现?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)