是否可以使用 Tomcat 配置基于正则表达式的虚拟主机?

发布于 2024-10-17 12:28:19 字数 224 浏览 2 评论 0 原文

我想配置 Tomcat6,以便让一个 appBase 应答主机名与 "^www.something.[az]+$" 匹配的所有请求,另一个 appBase< /code> 回答所有匹配 "^www.(foo|bar).com$" 的请求。

是否可以使用 Tomcat 配置此类基于正则表达式的虚拟主机?

I want to configure Tomcat6 so that I have one appBase answering all requests with hostnames matching "^www.something.[a-z]+$" and another appBase answering all requests matching say "^www.(foo|bar).com$".

Is it possible to configure such regexp based virtual hosts using Tomcat?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2024-10-24 12:28:19

Tomcat 中没有任何东西可以提供开箱即用的灵活性。我猜你能得到的最接近的是 主机名别名< /a>.

您可能需要考虑将 Apache + mod_proxy 放在 Tomcat 前面,并使用 mod_rewrite 进行一些 URL 重写。另一种选择是编写自己的自定义 Valve

There is nothing in Tomcat for that level of flexibility out of the box. I would guess that the closest what you can get are Host Name Aliases.

You might want to consider putting Apache + mod_proxy in front of Tomcat and do some URL rewriting with mod_rewrite. Another alternative is to write your own custom Valve.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文