301重定向错误
1
|
<br>
|
<VirtualHost *:80>
ServerName mqsj.mq.com
ProxyRequests Off
<Proxy http://mqsj.mq.com>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://222.190.121.13/pub
ProxyPassReverse / http://222.190.121.13/pub
</VirtualHost>
解决
<VirtualHost *:80>
ServerName mqsj.mq.com
ProxyRequests Off
<Proxy http://mqsj.mq.com>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://222.190.121.13/pub/
ProxyPassReverse / http://222.190.121.13/pub/
</VirtualHost>
跳转后输入用户名和密码不跳转
需要添加参数
ProxyPreserveHost on
本文转自 cs312779641 51CTO博客,原文链接:http://blog.51cto.com/chenhao6/1710056