在CentOS中安裝apache並啓動後,默認CentOS會爲Apache添加一個測試頁面,安裝完畢而且對Apache的保持默認配置,以後在瀏覽器中輸入你的站點的域名或ip地址,瀏覽器會打開以下界面html
該界面是用來測試Apache服務器是否工做正常。apache
禁用該測試頁面的方法以下:vim
1.打開終端,登錄到CentOS上瀏覽器
2.在終端中輸入如下命令服務器
cd /etc/httpd/conf.d
3.繼續輸入命令,顯示當前目錄下的文件測試
ls
4.找到名爲welcome.conf的文件,並用vim打開rest
vim welcome.conf
welcome.conf的內容以下code
# # This configuration file enables the default "Welcome" # page if there is no default index page present for # the root URL. To disable the Welcome page, comment # out all the lines below. # <LocationMatch "^/+$"> Options -Indexes ErrorDocument 403 /error/noindex.html </LocationMatch>
文件中的說明性內容說明了該文件的主要做用,以及關閉該做用的方法。其實該文件也是一個普通的配置文件,並被包含進了Apache服務器httpd.conf主文件中,只要用"#"將welcome.conf的內容註釋掉便可,以下:htm
# # This configuration file enables the default "Welcome" # page if there is no default index page present for # the root URL. To disable the Welcome page, comment # out all the lines below. # #<LocationMatch "^/+$"> # Options -Indexes # ErrorDocument 403 /error/noindex.html #</LocationMatch>
5.從新啓動Apache圖片
service httpd restart
注:查看noindex.html爲存放路勁
cd /var/www/error/ ls