|
使用Apache架設網站後,若在網頁根目錄下沒有index檔的話,Apache會把資料夾內所有的檔Show出來,哇!!!這樣別人不就知道你裡面有什麼東西了嗎? 別緊張,只要在 httpd.conf 作一下小小的修改就可以解決了唷∼
【httpd.conf的修改 】
首先請找到以下文字:
<Directory "網頁根目錄">
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks MultiViews
請把 Options Indexes FollowSymLinks MultiViews 這行改成 Options None 或拿掉 Indexes 就可以了。
補充說明:
其實只要在不想顯示的目錄中放一個空白的index.html即可(像phpBB那樣)
根本不需要動到httpd.conf
Reference: http://bbs.mychat.to/read.php?tid=103713 |
|