You need some
Java code to enable this.
In jForum, the first part of the URL after jForum (e.g. display) is a tag for the "module" you want to use. These are set in the modulesMapping.properties file and map request to a Command object subclass, e.g. PostAction
Then you need a second part of the URL to specify the "action" method in that object to call. E.g. /posts/list points to the list() method in the PostAction class.
The action method will set up the required "context" for the template page, which is found via the templateMapping file.
[originally posted on jforum.net by monroe]