revIgniter can be told to load a default controller when a URI is not present, as will be the case when only your site root URL is requested. To specify a default controller, open your application/config/routes.lc file and set this variable:
To specify a default controller, open your application/config/routes.lc file and set this variable:
put "Blog" into gRoute[1]["defaultController"]
Where Blog is the name of the controller library you want used. If you now load your main index.lc file without specifying any URI segments you'll see your Hello World message by default.