1
WordPressでディレクトリブラウズを無効にしたいと考えています。しかし、それは動作していません。 私を助けてください。私はすでにこれはあなたの設定ファイルにいくつかの矛盾があるフォルダのhttpdディレクトリブラウジングの無効化Apacheが機能していない
<Directory "${INSTALL_DIR}/www/">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options +Indexes +FollowSymLinks +Multiviews
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - don't remove
Require all granted
</Directory>
<Directory ${INSTALL_DIR}/www/wp-includes>
Options -Indexes
AllowOverride None
Order allow,deny
</Directory>
httpdを再起動しますか? –
私はApacheを再起動しますか?答えは「はい」です。私はサーバーのApacheを再起動します。 –