I am having some trouble redirecting some old URLs to new ones.
This is the old path:
/index.php?loadpage=./includes/search.php&searchstring=KEYWORD
and I want it to redirect to this URL:
/search/node/KEYWORD
*where "KEYWORD" is a variable search string.
This is what I have tried so far:
RewriteRule ^/?search/node/([^/d]+)/?$ index.php?loadpage=./includes/search.php&searchstring=$1 [L,QSA]
and this:
RewriteRule ^/?search/node/([^/d]+)/?$ index.php?searchstring=$1 [L,QSA]
but the redirects don't work.
Can anyone please help or give me some guidance on how to fix these redirects?
Thank you in advance!