When I request the following URL with netscape:

http://www.mydomain.com/mason_root/subdir/B/9/abc

The request is handled by a dhandler in /mason_root/subdir


Here is the dhandler:

<HTML>
<HEAD>
<TITLE>Test</TITLE>
</HEAD>
<BODY BGCOLOR='white'>
This is a test.
<P>
Path_info: <% $r->path_info() %>
</BODY>
</HTML>
 
<%init>
$r->content_type('text/html');
</%init>                               


The problem is that the value of path_info is /9/abc when I expect it to
be B/9/abc.

Is the dhandler being treated as B?

HTML::Mason version 0.88

Thanks.

-Todd


Reply via email to