它正在运行Rails 3.0.0或Rails 3.0.5(使用
Ruby 1.9.2)
处于开发模式
rails server
那么http://localhost:3000的工作都很好,http://localhost:3000/foos将加载一个stylesheet.css
但是当它是
rails server -e production
那么现在突然,http://localhost:3000给了:
No route matches "/"
和http://localhost:3000/foos可以运行,但是stylesheet.css没有加载,并在浏览器中打开它显示:
No route matches "/stylesheets/scaffold.css"
生产与发展需要特殊路线吗? (还是因为其他原因?)