1. 程式人生 > >Apache 新增自定義vhost 目錄,等其他配置

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

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>