我目前已经安装了反向代理。一个阿帕奇正在做这项工作。所以我配置了 mod_proxy 来适应 url。我还使用 mod_proxy_html 来适应 HTML 和 JavaScript 链接。现在我遇到了一个 ajax 调用的问题,它返回一个 json 编码的 url。
有没有办法用 mod_proxy_html 做到这一点?有没有人建议如何调整这些网址?
提前谢谢
我目前已经安装了反向代理。一个阿帕奇正在做这项工作。所以我配置了 mod_proxy 来适应 url。我还使用 mod_proxy_html 来适应 HTML 和 JavaScript 链接。现在我遇到了一个 ajax 调用的问题,它返回一个 json 编码的 url。
有没有办法用 mod_proxy_html 做到这一点?有没有人建议如何调整这些网址?
提前谢谢
我找到了另一种替换 json-links 的方法:
我使用了 apache 模块mod_substitute。如果您将application/json声明为 OutputFilter,则 Proxy 将替换链接。mod_substitute 的语法类似于 unix-/linux-command sed的语法。
一个小例子:
AddOutputFilterByType SUBSTITUTE application/json
Substitute "s|zuersetzen|ersetzt|n"
参考以下链接: http ://httpd.apache.org/docs/2.4/mod/mod_substitute.html