ruby on rails - How to redirect to page if locale doesn't exist? -
can redirect "/en" page if locale doesn't exist in rails?
i use i18n , next code:
match '*path' => redirect('/'), via: :get
but redirects path, not locale. how can use locales too?
in controller that
before_filter :check_locale protected def check_locale redirect_to "/en#{request.path_info}" if params[:locale].blank? end
Comments
Post a Comment