Feature #1193
Allow default index to be a static page instead of the articles index
| Status : | New | Start : | ||
| Priority : | Low | Due date : | ||
| Assigned to : | neuro - | % Done : | 0% |
|
| Category : | backend | |||
| Target version : | Maybe Someday | |||
| Resolution : | wontfix |
Description
Is it possible to add an option in the admin interface to allow the default page loaded to be a static page instead of the main articles index page? (i.e. when I go to http://blog.myserver.domain/ it loads a pre-generated static page)
History
08/31/2008 05:18 PM - neuro -
- Assigned to changed from scott - to neuro -
- Resolution set to wontfix
For this you need to change a line in config/routes.rb
map.index '', :controller => 'articles', :action => 'index'
to
map.index '', :controller => 'articles', :action => 'view_page', :title => 'some-title'
