Refile给出Sinatra :: NotFound:Sinatra :: NotFound在rails中?

时间:2016-05-04 07:21:39

标签: ruby-on-rails ruby sinatra refile

我在rails 4.2应用程序中添加了文件上传的refile。但是现在当用户错误输入网址时,我开始看到Sinatra :: NotFound。 我该怎么做才能防止它显示正确的错误页面?

1 个答案:

答案 0 :(得分:0)

我认为你所寻找的是一个“全部捕捉”的东西。路线。基本上,如果网址输入错误,您的应用程序将重新路由到默认路由:

get '/*' do
  redirect "http://whateverYouWant.com"
end