Ich habe eine bestehende htaccess, die gut funktioniert:
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule (.*) /default.php
DirectoryIndex index.php /default.php
Ich möchte dies so ändern, dass alle URLs, die mit /test/ beginnen, zu /test/default.php führen.
Beispiel: http://www.x.com/hello.php -- > http://www.x.com/default.php Beispiel: http://www.x.com/test/hello.php -- > http://www.x.com/test/default.php