Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はウェブサーバーを持っており、インデックスファイルを持たないすべてのフォルダー (サブフォルダーを含む) に対して 403 禁止を作成する必要があります。サブフォルダではありません。インデックス ファイルを持たない Web サイト フォルダへのアクセスをブロックするにはどうすればよいですか?
ありがとう
このルールでもDirectoryIndex onうまくいくはずです:
DirectoryIndex on
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{DOCUMENT_ROOT}/$1/index.php !-f RewriteRule ^(.+?)/?$ - [F]