でフォルダの表示内容には、デフォルトでdomain.com/test/folder/index.phpを表示する必要があり、ユーザーが訪問domain.com/test/。の.htaccess - サブディレクトリ
index.html <-- current homepage
/test/ <-- .htaccess file
/folder/
index.php
現在、私は使用します。
DirectoryIndex folder/index.php
しかし、他の方法はありますか?私はするRewriteRuleを試してみましたが、それは動作しません。
RewriteRule ^(.*) /folder/index.php [NC,L,QSA]
'のRewriteRule^$フォルダ/ index.php' – jeremy
@Jeremy私はこれを試しましたが、403 Forbiddenエラーが発生します。 – forloop