Fix redirects from /web/ discarding everything after a dot (#20148)

Fixes #20145
This commit is contained in:
Claire 2022-11-09 01:30:33 +01:00 committed by GitHub
parent 1edd90fe99
commit 070e7f51b4

View file

@ -683,7 +683,7 @@ Rails.application.routes.draw do
get path, to: 'home#index'
end
get '/web/(*any)', to: redirect('/%{any}', status: 302), as: :web, defaults: { any: '' }
get '/web/(*any)', to: redirect('/%{any}', status: 302), as: :web, defaults: { any: '' }, format: false
get '/about', to: 'about#show'
get '/about/more', to: redirect('/about')