alright, thanks for your fast reply.
foobar.php($_GET['seite']) outputs "test" instead of "foobar".
whereas foobar.php should be handled as test.php?seite=foobar so obviously the word "foobar" should be saved in "seite" variable not "test".
i don't understand whats going on.
here's my htaccess with your correction:
PHP Code:
RewriteEngine on RewriteRule test.php - RewriteRule ^(.*)\.php$ test.php?seite=$1 [L]
|