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.