I was adding an FAQ section to my site, using html named anchors ... as defined here. All the URLs were being generated as

Code:
http://www.mysite.com/#label
It was driving me nuts until I (finally) figured out that the anchor link needed to be coded as

Code:
<a href="index.php?main_page=zen_page_name#label">
I'm hoping this helps somebody else out!