Bart Ophelders wrote:
Sorry if I was somewhat unclear.
What I would like to accomplish is the following:
If someone types start.test.example.com it should refer to a certain page.
If someone types hello.test.example.com it should refer to the same page.
I would like the user to be able to type anything before the test.example.com and
tomcat still accepts it and refers to the correct page
(<anything>.test.example.com)
The first thing you need to understand is that there are 2 steps :
1) when the user types "xxx.test.example.com", /his/ DNS resolver needs
to resolve that to the IP address of your server. Otherwise, your
Tomcat will never even receive and see those requests.
2) /then/ you can start thinking about how Tomcat should process the
requests that it receives.
Really make sure you understand (1) before you start with (2).
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org