It looks like you want 2 routes:
/blogs/:other_param /blogs/:id
But for someone as smart as Rails, he cannot determine if the parameter should be treated as other_param or as id.
So, the easiest solution is to add this route to the default settings:
resources :blogs get "/blogs/other_param/:other_param", to: "blogs#index", as: "other_param_blogs"
So Rails knows that if you are going to / blogs / other _param / current, then it will handle the current as: other_param.
evanbikes
source share