-1
對於SEO目的,我希望root_path爲''。換句話說,我希望規範主頁URL是domain.com而不是domain.com/。我試圖設置Rails,如何將root_path設置爲''
# routes.rb
get '' => 'home#index', as: :root
# rack_rewrite.rb
Rails.application.config.middleware.insert_before(Rack::Sendfile, Rack::Rewrite) do
r301 %r{^/$}, ''
end
但這不起作用。 rake routes
還表示:
root GET / home#index