Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
tomcat 7 で複数のサブドメインを単一の webapp に向ける方法はありますか?
例えば
admin.test.com
はすでに webapp に割り当てられています。割り当てたい
operator.test.com
そのアプリにも。(両方の URL が同じ webapp を指しているようなもの)。
これを行うには、はるかに簡単な方法があります。
<Host name="domain1.com" ...> <Alias>www.domain1.com</Alias> <Alias>domain1.net</Alias> <Alias>www.domain1.net</Alias> ... </Host>