Hi, This is not supported at the moment. Please file a ticket to improve it.
On Tue, Jan 15, 2013 at 6:14 PM, Yuci G EBI <[email protected]> wrote: > Hello, > > Wonder how to make URLs (i.e. mount paths) case insensitive for Wicket 6? > For example, make these two URLs do the same thing: localhost/AboutUs and > localhost/aboutus > > I understand for Wicket 1.4.x, you could achieve it in the way below: > > public class DemoApplication extends WebApplication > { > @Override > protected IRequestCycleProcessor newRequestCycleProcessor() { > return new WebRequestCycleProcessor() { > @Override > protected IRequestCodingStrategy newRequestCodingStrategy() { > WebRequestCodingStrategy.**Settings strategySettings = > new WebRequestCodingStrategy.**Settings(); > strategySettings.**setMountsCaseSensitive(false); > return new WebRequestCodingStrategy(**strategySettings); > } > }; > } > } > > Many thanks, > Eusie > > ------------------------------**------------------------------**--------- > To unsubscribe, e-mail: > users-unsubscribe@wicket.**apache.org<[email protected]> > For additional commands, e-mail: [email protected] > > -- Martin Grigorov jWeekend Training, Consulting, Development http://jWeekend.com <http://jweekend.com/>
