I am developing a Umbraco
Website using ASP.NET MVC 5.0
. Following is the structure of the website
Home
Page 1
Page 2
...
C1, C2 are properties shared by all the pages(Home, Page 1, Page 2). H1, H2 are Home Page properties. P1, P2 are properties of Page 1 and Page 2.
So I created document types and Content in the following way
Root (C1, C2)
Home (H1, H2)
Page 1(P1, P2)
Page 2(P1, P2)
The reason I created Root document type and content is to put the common properties C1 and C2. If I use Home Page instead of Root then H1 and H2 properties appear on Page 1 and Page 2.
But the problem in the above structure is that I have to redirect Root to Home page. SEO tools doesn't like it.
Is there a better way to do this?