'URL redirection not working with index.php

I have this URL

https://example.org/index.php/foobar.html

That I want to redirect to

https://example.org/xpto/foobar/

I tried this

rewrite ^/index.php/foobar.html /xpto/foobar/ permanent;

But no luck. What can be?



Solution 1:[1]

if ($request_filename ~ /foobar.html) {
  rewrite ^ https://example.org/xpto/foobar/ permanent;
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Rodrigo