I’m rather new with Regular Expressions in general. Basically, I want to rewrite a url to accept either of these urls
create/
create/?action=blah&foo=bar
manage/
manage/?action=blah&foo=bar
The base page would be create.php or manage.php. Here is my current expression that works without the GET parameters.
RewriteRule ^(manage|create)/$ $1.php?$2 [L,QSA]
What can I add to passively accept the get parameters?
That should give you an optional set under
$2