i have an install v6 umbraco which is working fine, i have some pages and structure setup and am using the directory URL's which work for the main page but not any pages underneath that page. For example
My site is like this
Home
Contact
Courses
- COurse 1
- Course 2
Home, Contact and Courses all have a URL of /, /contact/ and /courses/ but course 1 and course 2 have URL's of /course-1/ and /course-2/ respectively when i want them to be /courses/course-1/ and /courses/course-2/
This setup would work automatically. If you can't change the structure, you could also try changing the umbracoHideTopLevelNodeFromPath setting in /web.config - that may fix the issue.
directory url's and page structure
i have an install v6 umbraco which is working fine, i have some pages and structure setup and am using the directory URL's which work for the main page but not any pages underneath that page. For example
My site is like this
Home
Contact
Courses
- COurse 1
- Course 2
Home, Contact and Courses all have a URL of /, /contact/ and /courses/ but course 1 and course 2 have URL's of /course-1/ and /course-2/ respectively when i want them to be /courses/course-1/ and /courses/course-2/
How would i achieve this?
Hi,
I think it's due to how umbraco handles top-level node paths. Normally you'd have your subpages under your homepage, like so:
- Home
- - Contact
- - Courses
- - - Course 1
- - - Course 2
This setup would work automatically. If you can't change the structure, you could also try changing the umbracoHideTopLevelNodeFromPath setting in /web.config - that may fix the issue.
-Tom
changing the web.config value fixed the issue, thanks for the help!
is working on a reply...