0

我正在尝试为 apache2 t tomcat 实现重定向。我想要一个这样的 url:share.com打开到 alfresco 登录页面,但目前我必须使用这样的 url:

share.com/share/  .

我已经完成了研究,我取得的成果是从 url 中删除了 8080 端口:

share.com:8080/share/ 

只剩下 /share;我怎样才能删除 /share 部分呢?

4

1 回答 1

1

我相信您想要做的事情可以通过 ProxyPass 来实现。以下条目将导致所有内容都转到 Tomcat/share。

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
于 2012-12-17T23:40:08.683 回答