hi,
http://stackoverflow.com/questions/6105015/mod-rewrite-400-bad-request-problem
demnach
RewriteRule (?!^test?$)(.*) test/index.php?u=%{REQUEST_URI}&dollar1=$1 [L,QSA,NC,NE]
bringt mit
http://example.com/tes/aaa
und einem var_dump($_GET) in der test/index.php:
array(2) { ["u"]=> string(8) "/tes/aaa" ["dollar1"]=> string(7) "tes/aaa" }
hingegen
RewriteRule (?!^test?$)(.*) test/$1 [L,QSA,NC,NE]
bringt einen internal server error ...
mfg
tami