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.
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
Jake/Alex,
I’d ditch the leading / in the redirection and add a Last flag!
Regards,
DK