It has been a long time since I did something with Lift, but from what I remember, the easiest way could be to add a page to the menu entries in the bootstrap.liftweb.Boot.scala class. If you set up your project using one of the Lift maven archetypes, this class should be in your project. There is the following line in this class (or something similar to it, the example I received still uses Lift 1.0, currently I believe that they are already going to release 2.0):
val entries = Menu(Loc("Home", List("index"), "Home")) :: Nil
If you change this line to the following:
val entries = Menu(Loc("Home", List("index"), "Home")) :: Menu(Loc("Welcome", List("welcome"), "Welcome")) :: Nil
how you can get your welcome page directly.
source
share