Here's what I want to achieve:
www.mydomain.com/pages/23/page-title-hash-here -> www.mydomain.com/pages.php/23
www.mydomain.com/[otherpages] -> www.mydomain.com/[otherpages].php
www.mydomain.com/[otherpages]/ -> www.mydomain.com/[otherpages].php
Essentially, there are some simple pages that are queried by just the filename (www.mydomain.com/contact or www.mydomain.com/faq) and then there are pages that I refer to by using the pages.php/23/fdjsoipfahsd or products.php/54/gf-dsdfs-a-f and then I use the $_SERVER['REQUEST_URI'] var to parse through everything after the .php and retrieve the product ID or page ID etc. And there are many variants of these pages..
If I need to hardcode for each .php filename that has trails, I can do that too - we won't be adding any more. However the ones without any trails should still work.
