We all know that Redmine's home page is not a very useful welcome page. Depending on the use of the application, users may find a page with little content. But what if the users would directly be redirected to their “My Page” or their projects list after login?
Changing welcome page to “My Page”
We have to edit the following file:
/…your_redmine_installdir…/config/routes.rb
Go to the first lines of code:
Rails.application.routes.draw do
root :to => 'welcome#index', :as => 'home'
And change the 2nd line to this:
Rails.application.routes.draw do
root :to => 'my#index', :as => 'home'
Changing welcome page to the Projects list
If you would like your users to directly go to the Projects list after login, then change the same line to this:
Rails.application.routes.draw do
root :to => 'projects#index', :as => 'home'
After the changes, remember to restart your web server so that the change is effectively applied.