Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーが /something または /something.html を取得したときに実行される get を Sinatra で定義するにはどうすればよいですか?
だと思った...
get '/something*' do end
正規表現を使用してルートを照合し、オプションのグループを使用できます。
get %r[^/something(?:\.html)?$] do # ... end
Sinatra には、静的ファイルの一致を有効にする設定があるようです。
:static - 静的ファイル ルートを有効/無効にします
詳細については、シナトラの設定をご覧 ください