How to have a wiki on the homepage of my Redmine server ?
Added by Guillaume BARRANCO over 13 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 13 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.
RE: How to have a wiki on the homepage of my Redmine server ?
-
Added by Guillaume BARRANCO over 13 years ago
It works fine. Thank you very much !
RE: How to have a wiki on the homepage of my Redmine server ?
-
Added by Mischa The Evil over 13 years ago
For referencing, see also: home page automatic redirect to the wiki page of a project.