Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to 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?

like image 214
Nikhil Kathuria Avatar asked Feb 05 '13 09:02

Nikhil Kathuria


1 Answers

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 .

like image 118
R Milushev Avatar answered Oct 17 '22 23:10

R Milushev