实战Hilog笔记一:删除public/index.html

routes:
map.home '', :controller => 'website', :action => 'index'

这样直接访问网站首页 http://localhost:3000
结果会一直出现Rails默认页面

解决方法:
rm public/index.html

这样就可以使用layouts/application.rhtml作为网站layout
使用website/index.rhtml作为网站首页

你可能感兴趣的:(html,Rails)