KlydeMonroe
KlydeMonroe

Reputation: 195

How to create folders for a structure in Umbraco

I am looking at home to create a structure for an umbraco website. I want my site to be similar to below -

So the URLs will follow -

HomePage www.example.com/default.aspx

Products - www.example.com/Products/Default.aspx
ProductA - www.example.com/Products/ProductA.aspx
ProductB - www.example.com/Products/ProductB.aspx

Departments - www.example.com/Department/Default.aspx
DepartmentA - www.example.com/Department/DepartmentA.aspx
DepartmentB - www.example.com/Department/DepartmentB.aspx

Can you let me know how I can achieve this in Umbraco.

Thansk

Upvotes: 0

Views: 395

Answers (1)

Mikkel
Mikkel

Reputation: 1865

A simple way to achieve this, could be to simply create a Document Type named e.g. "Folder". In your Content Tree, you can then simply create one of these "Folders" and name it "Products" and then append children of "Product" to it.

Upvotes: 1

Related Questions