Htaccess - 从不存在的目录重定向'文件'

时间:2011-12-08 13:07:49

标签: .htaccess redirect

我想将现有文件重定向到我的根目录中的index.php,我的htaccess中有这个规则:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

这会将 http://www.test.de/test.php 重定向到index.php。

但是 http://www.test.de/test/test.php 不起作用。我可以从不存在的指令中重定向文件吗?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

是的,你可以。 你可以测试一下:

RewriteRule ^(.*)$ /index.php [L]