View Single Post
Old 10-12-2004, 05:05 AM   #2
blueyed
Green Mole
 
Join Date: Sep 2004
Posts: 19
FIXED..

in admin/robot_functions in line 780 add this:


Code:
             elseif (substr($regs[8],0,1) == "?") {
                  $links[$index] = phpdigRewriteUrl($path.$file.$regs[8]);
             }
This way links like
HTML Code:
<a href="?param=1">Link</a>
on a page like http://domain.com/subdir/file are followed as http://domain.com/subdir/file?param=1 and not http://domain.com/subdir/?param=1

I hope this makes it into the next release.

Thank you.
blueyed is offline   Reply With Quote