I have an unusual requirement for Wicket. I chose Wicket because I will make my website design-centric and it's URL-mounting features are simply the best for SEO. Unfortunatelly, I found a bump.
I want to create a site with different designs for different hosts. This site will have some host aliases (let's say: "abc.com", "abc.com.br", "abc.com.pl") - all pointing to the same codebase (i.e. the same tomcat host instance). That part is already up and running, thanks to Tomcat and a custom ResourceStreamLocator.
Now, I want different mounts for different hosts. This means "abc.com/page1", "abc.com.br/pagina1" and "abc.com.pl/strona1" must point to the same "Page1.class" page. Users from "abc.com" cannot see "abc.com/pagina1" or "abc.com/strona1".
How can I do this "dynamic host-based mount"?
Please notice I'm NOT talking about i18n. I'm using this example because it's simple to explan.