I have the following querry:
update234ae5.php?q=1&q=2....
must be rewriten to:
update.php?cond=234ae5&q=1&q=2....
I use:
"^/update(([a-zA-Z0-9]+))" => "/update.php?cond=$1"
How can i add the rest of url string, becouse my url it's rewritten to
update.php?cond=234ae5& without the rest of params
In apache i use
RewriteCond %{QUERY_STRING} (.*)
RewriteRule ^/update([0-9a-z]+).php /update.php?cond=$1&%1