我有一个可以正常工作的现有 htaccess:
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule (.*) /default.php
DirectoryIndex index.php /default.php
我希望对此进行修改,以便所有以 /test/ 开头的 URL 都转到 /test/default.php,同时将所有其他 URL 保留为现有的 /default.php。
示例:http ://www.x.com/hello.php --> http://www.x.com/default.php示例:http ://www.x.com/test/hello.php -- > http://www.x.com/test/default.php