Hello I am using High Voltage for my statics pages in rails but I see the next structure when I make my statics pages:
myserver.com/pages/about
myserver.com/pages/privacy
myserver.com/pages/terms
.
.
.
.
I don’t want that “page” word appear. I want that appear this structure
myserver.com/about
myserver.com/privacy
myserver.com/terms
Thank you very much. Regards!
see this bug
this might work:
EDIT:
When you use the above instructions, you also need to go through your views and change all instances of:
to:
or better yet, just:
So find all the link_to’s in your views and make the changes above… Your urls will no longer have the word pages in them
hope this helps