How can I delete or hide the version number in the URL introduced in Wicket 1.5?
Mounting a page doesn\'t help.
http://localhost/MyPage/SubPage?0
For me the solution with setStatelessHint didn't work. The following did work:
setStatelessHint
class MyApplication extends WebApplication { @Override protected void init() { getRequestCycleSettings().setRenderStrategy( IRequestCycleSettings.RenderStrategy.ONE_PASS_RENDER); .... } }