Reputation: 2100
how can I define a custom page as frontpage in Silverstripe? So when the user opens www.example.com the page "Welcome" is displayed.
Is there a option where I can set a page as frontpage?
Thanks
Upvotes: 0
Views: 647
Reputation: 6094
it's the page with URLSegment 'home' that's always used as the homepage (which - unfortunately - isn't configurable yet). so just change the URLSegment of your homepage to 'home' (but change the URLSegment of the existing homepage to something different first).
see f.i. https://github.com/silverstripe/silverstripe-framework/issues/1427
Upvotes: 1