I've got a url http://example.com/pages.php/page-name and I want to remove the .php extension on the pages.php part... Is that possible with an .htaccess file or should I just give up?
I've tried RewriteRule ^(.+)\.php/(.+)$ $1/$2
from "Remove php extension from url" with no luck.
I'm new to .htaccess files (this is the first site my normal tricks don't work)