溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php禁止列目錄的方法

發(fā)布時(shí)間:2020-09-22 09:29:13 來(lái)源:億速云 閱讀:270 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹php禁止列目錄的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

php禁止列目錄的實(shí)現(xiàn)方法:首先找到并打開“httpd.conf”文件;然后在“Options Indexes FollowSymLinks”的“Indexes”前面加上“–”符號(hào);最后保存修改即可。

Apache中禁止顯示目錄文件列表的配置方法

假如你輸入一個(gè)虛擬目錄的地址:http://localhost:8080/b/

如果該虛擬目錄下沒(méi)有 index.html,瀏覽器也會(huì)顯示該虛擬目錄的目錄結(jié)構(gòu),列出該虛擬目錄下的文件和子目錄。

如何禁止 Apache 顯示目錄列表呢?

要禁止 Apache 顯示目錄結(jié)構(gòu)列表,只需將 Option 中的 Indexes 去掉即可。

比如我們看看一個(gè)目錄的目錄配置:

<Directory "D:/Apa/blabla">
    Options Indexes FollowSymLinks #----------> Options  FollowSymLinks AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

你只需要將上面紅色代碼中的 Indexes 去掉,就可以禁止 Apache 顯示該目錄結(jié)構(gòu)。用戶就不會(huì)看到該目錄下的文件和子目錄列表了。

Indexes 的作用就是當(dāng)該目錄下沒(méi)有 index.html 文件時(shí),就顯示目錄結(jié)構(gòu),去掉 Indexes,Apache 就不會(huì)顯示該目錄的列表了。

如果這樣設(shè)置可能還是會(huì)顯示目錄列表:

<Directory / >
    Options  FollowSymLinks AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

第二種方法

編輯httpd.conf文件編輯httpd.conf文件

vi ./conf/httpd.conf

找到如下內(nèi)容:

……
<Directory “C:/Program Files/Apache2.2/htdocs”>
    #
    # 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.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks
    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be “All”, “None”, or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None
    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all
</Directory>
……

在Options Indexes FollowSymLinks在Indexes前面加上 – 符號(hào)。

即: Options -Indexes FollowSymLinks

【備注:在Indexes前,加 + 代表允許目錄瀏覽;加 – 代表禁止目錄瀏覽?!?/p>

這樣的話就屬于整個(gè)Apache禁止目錄瀏覽了。

如果是在虛擬主機(jī)中,只要增加如下信息就行:

<Directory “D:\test”>
     Options -Indexes FollowSymLinks
     AllowOverride None
     Order deny,allow
     Allow from all
</Directory>

這樣的話就禁止在test工程下進(jìn)行目錄瀏覽。

備注: 切記莫把“Allow from all”改成 “Deny from all”,否則,整個(gè)網(wǎng)站都不能被打開。

還有一種方法:

可以在根目錄的 .htaccess 文件中輸入

<Files *>

Options -Indexes

</Files>

就可以阻止Apache 將目錄結(jié)構(gòu)列表出來(lái)。

以上是php禁止列目錄的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI