asp.net - Create Folder Structure to Organize Content in Umbraco -


i have many pages in content section of umbraco of pages organize departmental reference not hierarchical site reference. example, pages might a, b, c, d ... z on website on backend have various teams need content grouped together. i.e. team 1 folder has a-g in it. team 2 folder has h-q. team 3 has r-z in it. how can achieved instead of seeing content on root of content page see these 3 team folders?

you have carefull in achieving this. when create new nodes under home root node, eg new pages or folders, referenced url.

so if have page called a, accessed using url http://www.example.com/a. when create folders organize pages , place page a under hq, page accessed http://www.example.com/hq/a.

after can use url rewriting rules avaid these folders indications in url messed if have many pages.

i suggest if don't want see these folder indications in url, add nodes under home node , using permission allow/disallow departments nodes.

if don't care folder indications in url, let me know edit answer solution achieve this.

edit

how add folder structure in content nodes.

step 1

create new document type called content folder.

  1. go settings > document types > click on 3 dots > create.
  2. give name content folder.
  3. as icon select folder icon
  4. add new property redirect alias umbracoredirect type content picker
  5. save changes

the builtin property umbracoredirect used redirect 1 node using id. each folder set property first child page.

step 2

allow child node types in folder.

  1. go structure tab of content folder property
  2. check child types want allow under folder
  3. save changes

step 3

allow folder under root home node.

  1. go structure tab of home root property
  2. check contentfoldertype allow child
  3. save changes

step 4

add folder structure , add pages.

  1. go content
  2. add new folder under root node of type content folder
  3. give name hq
  4. add new page called a that's allowed under folder
  5. in hq set redirect property first a page
  6. do folders , pages
  7. save changes , publish

and thats it!


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -