これが私のフォルダ構造です
test
-.htaccess
-app
--index.php
http:// localhost / test /にアクセスすると、test / app / index.phpに書き換えます(リダイレクトなし)
以下の私のhtaccess。これで、URL http:// localhost / test / some/thingで正常に動作します。URL http:// localhost / test /を使用すると、フォルダテストのファイルインデックスが表示されます
<IfModule mod_rewrite.c>
RewriteBase /test/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test/app/index.php [L]
</IfModule>