Apache-2.2
使用 Apache 作為反向代理在同一台機器上設置 Apache 託管 Wordpress 和 Tomcat 託管 JSP
我如何使進入的流量
www.example.com/
進入www.example.com:8080/
?以及如何使進入的流量www.example.com/blog/
進入www.example.com:80
?我目前在裡面的嘗試
httpd.conf
是:#Tomcat redirects ProxyPassreverse / http://localhost :8080/ #Wordpress redirects ProxyPassreverse /blog/ http://localhost :80/blog/
當我使用
localhost/
它時,它通常會進入 tomcat,但是當我嘗試時localhost/blog/
它會進入localhost :8080/blog/
嘗試更改配置的順序,例如
#Wordpress redirects ProxyPassreverse /blog/ http://localhost :80/blog/ #Tomcat redirects ProxyPassreverse / http://localhost :8080/
首先更具體,最後最一般