gpt4 book ai didi

apache - apache 的双重代理语句

转载 作者:行者123 更新时间:2023-11-28 23:40:06 26 4
gpt4 key购买 nike

如您所见,我试图让/和/BowlingFacelets/faces/指向同一个地方。

问题是当我提交表单时,JSF 页面将添加/BowlingFacelets/faces/。但是,我不希望最终用户必须输入这么长的语句才能启动应用程序。有办法做到这一点吗?

请注意,如果我手动添加,这将起作用

score.megahooked.com/BowlingFacelets/faces to the URL
ProxyPass / http://megahooked.com:8080/
ProxyPassReverse / http://megahooked.com:8080/

这将无法正常工作

score.megahooked.com/createEvent.xhtml

自从提交新 URL 时 找不到 score.megahooked.com/BowlingFacelets/faces/updateEvent.xhtml。


<VirtualHost *:80>
ServerName score.megahooked.com
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://megahooked.com:8080/BowlingFacelets/faces/
ProxyPassReverse / http://megahooked.com:8080/BowlingFacelets/faces/
ProxyPass /BowlingFacelets/faces/ http://megahooked.com:8080/BowlingFacelets/faces/
ProxyPassReverse /BowlingFacelets/faces/ http://megahooked.com:8080/BowlingFacelets/faces/

</VirtualHost>

最佳答案

解决方案可能是使用 mod_proxy_html。它可以解析 HTML 文档并在其中重写 URL。例如,我将应用程序“restfrontend”(映射到“/restfrontend”)作为根应用程序访问(映射到“/”)

ProxyHTMLEnable On
ProxyHTMLExtended On
ProxyHTMLMeta On
ProxyHTMLLogVerbose On
ProxyHTMLURLMap ^/restfrontend()$ $1 [LR]
ProxyHTMLURLMap /restfrontend/ /

ProxyPassReverseCookiePath /restfrontend /
ProxyHTMLDoctype HTML

我强烈反对这样做。这个模块很难配置。同时配置两条可能的路径将是一场噩梦。

更好的解决方案是将应用程序作为 ROOT 直接部署在 Tomcat 中,并为其他 URL 快捷方式添加一些重定向(使用 [R=301] 选项的 RewriteRule)。

关于apache - apache 的双重代理语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20501457/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com