> > <a href="about.html" class='footer_text'>
If your href doesn't start with a "/", the browser assumes the href is relative to the URL of the current page. So, if the current page is at http://www.yoursite.com/default/user, then the browser takes href="about.html" to mean http://www.yoursite.com/default/user/about.html. To get what you want, you need href="/default/about.html", or as has already been suggested, use the URL() helper. Anthony -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

