Fix /web prefix (#19468)

This commit is contained in:
Yamagishi Kazutoshi 2022-10-26 23:56:37 +09:00 committed by GitHub
parent 85fc370638
commit c84b4d4b9c

View file

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