Apache反向代理 为什么图片显示不出来
apache吧
全部回复
仅看楼主
level 1
2014年12月09日 02点12分 1
level 1
我也在研究反向代理,可惜碰到和你一样的问题,求答案啊
2015年03月14日 15点03分 2
level 12
这是我的反向代理的实际设法,
请参考:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/home/www/Techdocs/htdocs"
ServerName Techdocs.xxx.edu.cn
#ServerAlias http://www.dummy-host.example.cn
ErrorLog "/home/www/Techdocs/logs/error.log"
CustomLog "/home/www/Techdocs/logs/access.log" common
ProxyRequests Off
<Proxy *>
#Order deny,allow
#Allow from all
Require all granted
</Proxy>
ProxyPass / http://techdocs.abc.cn:80/
ProxyPassReverse / http://techdocs.abc.cn:80/
</VirtualHost>
2015年03月17日 05点03分 3
1