我如何让流量进入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/
答案1
尝试改变配置的顺序,例如
#Wordpress redirects
ProxyPassreverse /blog/ http://localhost :80/blog/
#Tomcat redirects
ProxyPassreverse / http://localhost :8080/
先说比较具体的,最后说最笼统的