私は次のルートを持っています:
get 'users/:user_id/:name', to: 'profiles#show',
:constraints => { :name => /[a-zA-Z0-9_]+$/ }, as: 'user_profile'
エラーが発生します:
Regexp anchor characters are not allowed in routing requirements: /[a-zA-Z0-9_]+$/
したがって、^文字は許可されていませんが、どの文字がこの特定のルーティングエラーを生成しているかはわかりません。