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.
Apache 内で、ユーザーがディレクトリのコンテンツを一覧表示するように制限できますか?それとも、ユーザーがアクセスを許可されると、コンテンツのダウンロードを制限するものは何もないというのは本当ですか?
<Directory "c:/[your path]"> Order Allow,Deny Allow from all #Options Indexes <LimitExcept ALL> require user [your user] </LimitExcept> </Directory>
ファイル * .confOption Indexesに がないと、ユーザーはディレクトリの内容を一覧表示できません。彼らは、ファイルのリソースにアクセスできます。
Option Indexes
求めていたものだと思います!