在开发模式下,Rails不会在Webrick上提供静态内容

时间:2012-06-02 04:48:51

标签: ruby-on-rails ruby-on-rails-3 webrick

我一直在尝试使用rails / webrick在开发模式下提供html文件,但是我不断收到以下错误:

没有路线匹配[GET]“/public/index.html”

即使在设置 config.assets.enabled = true 之后,也没有任何变化。 运行Rails 3.2.2

1 个答案:

答案 0 :(得分:1)

公共目录是从网站角度看的根目录。例如:

/path_to_rails/public/index.html = http://localhost:3000/index.html
/path_to_rails/public/subdir/home.html = http://localhost:3000/subdir/home.html

这假设您在http://localhost:3000

运行本地开发服务器