这里通过启用proxypass 实现代理转发
首先修改apache 配置文件httpd.conf
找到
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
将前面注释取消
然后在loadmodule 下面输入如下内容:
<proxy>
Order deny,allow
allow from all
</proxy>
proxypreservehost off 这个选项比较重要,如何不设置会出现转发失败的情况
ProxyPass /sina http://weibo.com/ 这里设置的是要转发的地址
ProxyPass /tencent http://t.qq.com/
ProxyPass /163 http://t.163.com/
ProxyPass /sohu http://i.sohu.com/
#ProxyPass / http://localhost:8080/
通过apache 取消请求中的reference 参数