Need help with a RewriteRule

Here is what I have in my .htaccess

# Redirect old links using login.php?tID=10446&sID=1547835 to login.php?testimonialID=10446&searchID=1547835
RewriteRule ^login.php?tID=([0-9]+)&sID=([0-9]+)$ login.php?testimonialID=$1&searchID=$2 [L]

However, login.php is not getting 10446 when using:

$testimonialID = isset($_REQUEST['testimonialID']) ? $_REQUEST['testimonialID'] : null;

Can anyone see what I have apparently overlooked?

Thanks!

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.