How would you mod_rewrite a url to go from
directory.php?id=4 to directory/category/city/name/4/
I took a stab in the dark with
RewriteRule ^directory/*/*/*/([^/\.]+)/?$ directory.php?&id=$4
But not working obviously. Any help is greatly appreciated