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>