2017-01-19 18 views
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> 
+0

httpdを再起動しますか? –

+0

私はApacheを再起動しますか?答えは「はい」です。私はサーバーのApacheを再起動します。 –

答えて

0

ある

htaccessファイル(オプション-Indexes)を編集しました。私は

<Directory ${INSTALL_DIR}/www/wp-includes> 

が実際行方不明引用符と/

また

AllowOverride all 

があるべき

<Directory "${INSTALL_DIR}/www/wp-includes/"> 

お知らせすべきであると考えてい

AllowOverride All 

お知らせ資本それがあなたの問題が解決しない場合はすべての

は私は、Apacheのバージョンを知っていると、このWindowsまたはLinuxでみましょう。

関連する問題