我想将现有文件重定向到我的根目录中的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 不起作用。我可以从不存在的指令中重定向文件吗?
感谢您的帮助。
答案 0 :(得分:0)
RewriteRule ^(.*)$ /index.php [L]