For my program I use dynamic URL rewriting with PHP:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Rewrite the URI if there is no file or folder
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#rewrite all to index.php
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
In PHP I then break down the URL in its different parts. For example http://myhost/foo/bar returns foo bar. The problem I have is if the program is not located in the root directory of the server, for example http://myhost/this/is/a/folder/hereistheprogram/foo/bar, because then the script returnes this is a folder hereistheprogram foo bar. Now have the problem that I can't differentiate between the folders and the URL parameters.