I have some external links to my site that referrer to pages with a file extension and a trailing slash after that e.g.
http://example.com/folder/page.php/
I can not change these links, but I would like to 301 redirect those links to this format instead:
http://example.com/folder/page/
I've tried this, but it doesn't work:
RewriteRule ^(.*)\.php\/$ /$1/ [R=301,L]
Any help is appreciated.