Why does a rewrite rule like this not work:
url.rewrite-if-not-file = (
"^parameter/(.*)$" => "/somefunnyfile.php?someparameter=$1"
)
... but a rule like this does work:
url.rewrite-if-not-file = (
"^/(.*)$" => "/somefunnyfile.php?someparameter=$1"
)
This is the mimed Apache RewriteRule
RewriteRule ^acraproxyphp/(.*)$ acraproxy.php?reportid=$1