10

如何将不正确的 url 重定向到 routes.rb 中的 404 页面?现在我使用 2 个示例代码:

# example 1
match "/go/(*url)", to: redirect { |params, request| Addressable::URI.heuristic_parse(params[:url]).to_s }, as: :redirect, format: false

# example 2
match "/go/(*url)", to: redirect { |params, request| Addressable::URI.heuristic_parse(URI.encode(params[:url])).to_s }, as: :redirect, format: false

但是当我尝试在“url”参数中使用俄语单词时,在第一个示例中,我得到 500 页(错误的 URI),在第二个示例中 - 我重定向到 stage.example.xn--org-yedaa​​a1fbbb/

谢谢

4

2 回答 2

30

如果你想要自定义错误页面,你最好看看我几周前写的这个答案


您需要几个重要元素来创建自定义错误路由:

->添加自定义错误处理程序application.rb

# File: config/application.rb
config.exceptions_app = self.routes

->在你的创建/404路线routes.rb

# File: config/routes.rb
if Rails.env.production?
   get '404', :to => 'application#page_not_found'
end

->添加actions到应用程序控制器以处理这些路由

# File: app/controllers/application_controller.rb
def page_not_found
    respond_to do |format|
      format.html { render template: 'errors/not_found_error', layout: 'layouts/application', status: 404 }
      format.all  { render nothing: true, status: 404 }
    end
  end

这显然是相对基本的,但希望它能给你一些关于你能做什么的更多想法

于 2013-10-29T09:33:58.883 回答
5

最简单的做法是确保您的路由不匹配错误的 URL。默认情况下,Rails 将为不存在的路由返回 404。

如果您无法执行此操作,则默认 404 页面位于,/404因此您可以重定向到该位置。但是,这里要记住的是,这种类型的重定向将执行 301 永久重定向而不是 302。这可能不是您想要的行为。为此,您可以执行以下操作:

match "/go/(*url)", to: redirect('/404')

相反,我建议在您的操作中设置一个 before 过滤器,而不是引发一个未找到的异常。我不确定这个异常是否在 Rails 4 中的同一个地方,但是我目前使用的是 Rails 3.2:

raise ActionController::RoutingError.new('Not Found')

然后,您可以在控制器中进行任何处理和 URL 检查(如果需要对 URL 格式进行复杂的检查)。

于 2013-10-29T09:24:21.260 回答