Change url

How can I change url:
http://localhost/en/job
on
http://localhost/pl/praca

?? I have tried:

RewriteRule %{REQUEST_URI}en/job %{REQUEST_URI}pl/praca

but it doesn’t work.

Get rid of that REQUEST_URI:

RewriteRule ^en/job/?$ /pl/praca

thx :slight_smile:

Jake/Alex,

I’d ditch the leading / in the redirection and add a Last flag!

Regards,

DK