Apache 新增自定義vhost 目錄,等其他配置

大飛_dafei發表於2018-05-07

1、在 Apache 下找到 httpd.conf  ,這個檔案中找到預設 Include conf/vhosts.conf   ,

在這個之後新增 Include conf/self_vhosts/*.conf

我的配置: 

Include conf/vhosts.conf
Include conf/self_vhosts/*.conf

 

2、 Apache 新增 404 跳轉到首頁 在 vhost 檔案中新增如下

主要程式碼:  ErrorDocument 404 http://www.test.com

<VirtualHost *:80>
    DocumentRoot "E:/web/bj_tour_en/A206/"
    ServerName www.test.com
    ErrorDocument 404 http://www.test.com
</VirtualHost>

2-02 、 強制 Apache 返回一個404狀態碼 (其他http狀態碼)

Redirect 404 /          #訪問根目錄顯示404
Redirect 500 /          #訪問根目錄顯示500
<Directory /data/www>
    Deny from all   #403 拒絕訪問
    #ErrorDocument 404 /test/404.html  #404 重定向
    #ErrorDocument 404 "This is 404 page"  #400 顯示錯誤字串
</Directory>

 

官網: Apache HTTP 伺服器 2.4 文件

相關文章