1,首先进入目录

cd /www/wdlinux/apache/conf/vhost
vim host.config

2.修改配置文件


DocumentRoot 网站目录
ServerName 网站域名
ServerAlias 解析的网站域名
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
ErrorDocument 503 /errpage/503.html
ProxyPass /  反向地址
ProxyPassReverse / 反向地址


    Options FollowSymLinks
    AllowOverride All
    Require all granted

===============

# Reverse Proxy  
  

 设置反向代理  

ProxyPass /foo http://foo.example.com/bar  

 设置反向代理使用代理服务的HOST重写内部原始服务器响应报文头中的Location和Content-Location  

ProxyPassReverse /foo http://foo.example.com/bar