ルート フォルダーまたはサブフォルダーに変更なしで配置されているかどうかに関係なく機能する .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/1/2/3/idunnoなど、subfolder1 の下のパスでも機能するはずです。