Project

General

Profile

How to have a wiki on the homepage of my Redmine server ?

Added by Guillaume BARRANCO over 12 years ago

Hi all,
I would like to know how to have a wiki on the homepage of my redmine server like on http://www.redmine.org
I have redmine 1.2.2

thank you by advance


Replies (3)

RE: How to have a wiki on the homepage of my Redmine server ? - Added by André Bachmann over 12 years ago

If you want to have this behaviour of Redmine, you have to edit config/routes.rb from your Redmine installation. The first defined route there is normally

map.home '', :controller => 'welcome'
You will have to change this to something like
map.home '', :controller => 'wiki', :action => 'show', :project_id => 'xyz'
if you want to see the wiki page of project xyz.

    (1-3/3)