I want to change the root path of spree site to a static page.
Can anyone please tell how can I change the spree default home page?
I want to change the root path of spree site to a static page.
Can anyone please tell how can I change the spree default home page?
One easy solution is : in your public
directory you place the static index.html
. Then in your routes.rb
:
mount Spree::Core::Engine, :at => '/store'
with the idea to point a link from your index.html
to yoursite.com/store
.
store
route , which points your Spree engine mount point . Your Rials generated (dynamical) content might be a resource , which have index
pointing to root
of your app . Something like : root :to => 'your_resource#index'
at the bottom of your routes.rb
. Assuming that in your index
template there is a link to store. –
Pacifically © 2022 - 2024 — McMap. All rights reserved.
public/index.html
? – Pacifically