I would like do the following mod_rewrite via htaccess:
/xxx/yyy/?zzz=2 --> /index.php?src=xxx/yyy/&zzz=2
I tried the following, but it doesn't work (404 error):
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?src=$1&%{QUERY_STRING} [P,L]
Many thanks for your help!