+1  A: 

Use either:

RewriteRule ^(.*)/$ index.php?path=$1

or

RewriteRule ^(.*)/$ index.php/$1

and tear apart $_GET['path'] or $_SERVER['PATH_INFO'] respectively.

Ignacio Vazquez-Abrams