2012-12-17 89 views
0

我正在嘗試爲apache2實現重定向t tomcat.I想要這樣一個url:share.com要打開到alfresco登錄頁面,但是目前我必須使用如下所示的url:APACHE重定向到使用MOD_PROXY的TOMCAT

share.com/share/ . 

我已經做了研究,我實現了刪除URL中的8080端口:

share.com:8080/share/ 

僅剩的/股;我怎樣才能刪除/共享部分呢?

回答

1

我相信你正在嘗試做的事情可以通過ProxyPass來實現。以下條目將導致一切進入Tomcat /共享。

ProxyPass/http://localhost:8080/share 
ProxyPassReverse/http://localhost:8080/share 

對於上述工作,mod_proxy_http將需要安裝和加載。這既可以在conf文件動態加載配置行來完成:

LoadModule proxy_http_module modules/mod_proxy_http.so 

或編譯到Apache中:

./httpd -l | grep proxy 
mod_proxy.c 
mod_proxy_connect.c 
mod_proxy_ftp.c 
mod_proxy_http.c 
mod_proxy_scgi.c 
mod_proxy_ajp.c 
mod_proxy_balancer.c 
相關問題