ユーザーコントローラーがあります。
特定のユーザーのために、私はこのようなものを持ちたい
example.com/a_constant_string ==> example.com/users/2
すべてのユーザーではなく、特定のユーザーだけが必要です。あなたは言うことができます
link_to 'Go to a specific user', @user
link_to 'Go to a specific user', user_path(@user)
link_to 'Go to a specific user', a_constant_string_path
同じはずです。