Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting start node in a umbraco website

Tags:

umbraco

I have this content structure for a multi language site.

  • Content
    • Danish
      • Forside
      • Om os
    • English
      • Frontpage
      • About Us

When I start the website it automatically starts in the Danish-node, but I want it to start in "Forside", and as for the english part of the side I want it to start in the node "Frontpage".

The nodes "Danish" and "English" are page nodes as well, but are only there as a logical folder structure.

Is there any way I can choose which content node my website should start at?

like image 386
Peter Lindholm Avatar asked Jan 29 '26 04:01

Peter Lindholm


1 Answers

You can use the built-in feature:

  1. Add a property called 'umbracoRedirect' to the document type associated with the 'Danish' node.
  2. Set the property to be of type 'Content picker' and save it
  3. At 'Danish' node set the property to point to node 'ForSide'.

That should work.

like image 83
ni5ni6 Avatar answered Jan 31 '26 22:01

ni5ni6