What I\'m asking for is simply rewriting any URL-given sub-directiories to a PHP URL parameter for nicer looking, user friendly URL.
I know that this is possible usi
This rule should work for you in your DOCUMENT_ROOT/.htaccess file:
DOCUMENT_ROOT/.htaccess
RewriteEngine On RewriteRule ^(directory)/([^/.]+)/?$ /$1/index.php?id=$2 [L,NC,QSA]
Make sure there is no other .htaccess file in directory.
.htaccess
directory