我需要一个 .htaccess 文件,无论它是放在根文件夹还是子文件夹中都可以正常工作,无需修改。下面的脚本是我一直试图适应但没有成功的正常脚本。我在根目录和子文件夹上尝试了htaccess rewrite index.php的解决方案,但无法正常工作。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
布局
.htaccess
index.php
subfolder1
- .htaccess
- index.php
路线/blah应该去/index.php和/subfolder1/whatever应该去/subfolder1/index.php。目前,上述脚本会将/subfolder1/whatever发送到/index.php。
[更新]
这也适用于 subfolder1 下的任何路径,例如/subfolder1/1/2/3/idunno。