Hello, I've run into an issue that I haven't been able to solve yet....probably simple though. I've added code to my handler application to give me a DirectoryIndex functionality so that when a url without an html page specified is called, e.g.,
www.domain.com/client/zzx/ga or www.domain.com/client/zzx/ga/ then the following url will be used to call a template: www.domain.com/client/zzx/ga/index.html (this template would corresond to /home/client/templates/zzx/ga/index.html) The issue I've run into is that if I add a relative link to this index.html template like: <a href="bio.html">Bio</a> it will only work as expected if I use www.domain.com/client/zzx/ga/index.html or www.domain.com/client/zzx/ga/ with the link being www.domain.com/client/zzx/ga/bio.html where if I use www.domain.com/client/zzx/ga the link points to www.domain.com/clint/zzx/bio.html -- Code and other info: /client is mapped to my mod_perl app, Client.pm I'm using path_info() to get the "zzx" and "ga" to build the path to my template
