Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 rails 4.2 应用程序中添加了用于文件上传的 refile。但是现在我开始看到 Sinatra::NotFound 当用户输入错误的网址时。我能做些什么来防止它显示正确的错误页面?
我认为您正在寻找的是一条“包罗万象”的路线。基本上,如果 url 输入错误,您的应用程序将重新路由到默认路由:
get '/*' do redirect "http://whateverYouWant.com" end