ChiliProject is not maintained anymore.
Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and
we urge all existing users to migrate their data to a maintained
system, e.g. Redmine. We will
provide a migration script later. In the meantime, you can use the
instructions by
Christian Daehn.
Forums » Discuss »
Display Wiki by default
Added by GDR! GDR! at 2013-06-18 10:57 am
Is it possible to display Wiki as the default page for every project?
Let me stress, I don't want to see the Wiki instead of the "latest projects" page after I log in. I want to see Wiki by default, when I click on a project in Projects menu on the top.
Would that be doable without custom patching the code?
Not without custom code I think, sorry.
Hi,
just a note - I use the plugin to modify the default home / start page for CP:
https://github.com/txinto/redmine_startpage
If you aren't a Ruby programmer, why not using simple Apache Redirect / RewriteRules?
e.g.: Opening a project page uses URLs like http://mychili.com/projects/myproject
and http://mychili.com/projects/myproject?jump=welcome
So an Apache RewriteRule could just redirect each of these URLs to (e.g.) the default Wiki page of the project:
RewriteEngine On
# Wiki instead of project overview:
RewriteRule ^projects/([^/]+)$ http://mychili.com/projects/$1/wiki [R,L]
But: This will hide the overview page!
If you need help getting it working, you can ask me here.
ciao,
Chris
Chris,
Yeah, this makes sense as a workaround. Thanks!
I'm not too good at Ruby, but I'd manage to write a patch. But the thing with patches is that they make upgrades hard, and I'd like to avoid that.