i seem to be having some issues with my htaccess code and i am not sure why its not working, admittedly I am no expert, so any help would be appreciated.
what i am trying to achieve is this:
www.example.com/job-search.html?jobid=12345
needs to be redirected to:
www.example.com/jobs/12345
the code in htaccess that I have come up with so far is:
RewriteEngine ON
RewriteRule ^/job-search.html\?jobid=(.+) /jobs/$1 [R=301,L]
This however is not working for me, and I am not sure why, could anyone help?