Apache-2.2
Apache 或 Varnish 反向代理到子文件夾
我有一個域 site.example.com,我想反向代理 site2.example.com/subfolder 中的 Web 應用程序。使用者應使用 site.example.com/subfolder 訪問該應用程序。是否可以?我想使用 Apache 甚至更好的清漆(不打 Apache)來做重定向。
謝謝
除非你有一個高流量的網站,否則我會使用 Apache。這可以使用帶有ProxyPass和ProxyPassReverse的mod_proxy來完成。
它最終會像在 site.example.com 伺服器上一樣:
ProxyRequests On ProxyVia On ProxyPass /subfolder http://site2.example.com/subfolder ProxyPassReverse /subfolder http://site2.example.com/subfolder