I have a site where I need to redirect from one url to another.
The current url: www.somesite.com/people/johndoe/?id=10
The desired url: www.somesite.com/people/?id=10
I am trying this in my .htaccess file but to no avail:
RedirectMatch ^/people/(.*)$ /people/?id=$1
This returns:
www.somesite.com/people/?id=johndoe
I have looked up many similar questions on this site and elsewhere, but cannot find a solution that works. Thanks in advance
Your regex is not correct.
Use this: