I have a Structure setup where I'd like each child to link to an anchor within the parent page (see the attached image).

But when I use <a href="{{ subEntry.url }}"> and click on the link, it redirects to the parent URL without the # anchor.
e.g. http://localhost:3000/services/web-interactive-design#website-design redirects to http://localhost:3000/services/website-design
How can I prevent this from happening?
{{entry.url}}parameter and accomplish What you're trying to do. The hash value is not passed to the server. So having a url like 'something#whatever' only passes in 'something' to the system to route the page. You can do what you're trying to accomplish, you just can't use the{{entry.url}}value. This issue on answer may shed more light on how the browser interprets hashes. – Ian Jul 18 '14 at 16:14{{ entry.url }}:<a href="/services/{{ entry.slug }}#{{ subEntry.slug }}">{{ subEntry.title }}</a>– cmal Jul 18 '14 at 19:27