I'm trying to catch everything after /project/ until the last slash, even if there's a slash in between. Is this possible?
/project/code-cons/isting-0f_all-ch/ars/
rewrite to:
/project/?id=code-cons/isting-0f_all-ch/ars
I previously used this rule:
RewriteRule ^project/([^/]+)/?$ index.php?pagename=project&id=$1 [L]
But that does not take slashes in the project id into account and so does not match the rule.