diff --git a/config/routes.rb b/config/routes.rb
index fd0cbab2b9e7d7f3615a1e8d3d3f3b36c66e2a30..f24d539baeec09fb6d56e2476125d1f56ec1470f 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -681,9 +681,9 @@ Rails.application.routes.draw do
     get path, to: 'home#index'
   end
 
-  get '/web/(*any)',   to: redirect('/%{any}', status: 302), as: :web
-  get '/about',        to: 'about#show'
-  get '/about/more',   to: redirect('/about')
+  get '/web/(*any)', to: redirect('/%{any}', status: 302), as: :web, defaults: { any: '' }
+  get '/about',      to: 'about#show'
+  get '/about/more', to: redirect('/about')
 
   get '/privacy-policy', to: 'privacy#show', as: :privacy_policy
   get '/terms',          to: redirect('/privacy-policy')