Hi,
i can't get my url-rewriting running.
I like to rewrite
www.foopage.com/dir/foo.html to /dir/index.php?boo=foo
just to look for for the index.php in the requesting directory and then
in the root directory
With
RewriteRule ([a-zA-Z0-9]+).html index.php?boo=$1
apache always uses the index.php under root (www.foopage.com/index.php)
and not in the requesting page (www.foopage.com/dir/index.php)
How can i accomplish that?