在 Apache 中映射具有不同端口的 URL

在 Apache 中映射具有不同端口的 URL

我有一个网址:

http://ip:9200/_plugin/head/

我希望在访问时打开该 URL:

http://ip/es-head

我如何在 Apache 中做到这一点?

答案1

你需要使用mod_proxy。Apache 配置如下:

ProxyPass /es-head/ http://ip:9200/_plugin/head/
ProxyPassReverse /es-head/ http://ip:9200/_plugin/head/

Apache 手册有一些例子。

相关内容