我正在尝试在我的 WAMPSERVER 2.0i 安装上设置虚拟主机。目前它看起来像这样:
http://domain/main
http://domain/sub1
http://domain/sub2
我需要进行设置,以便 1) 访问http://domain/将重定向到http://domain/main,但是 2) http://domain/sub1和http://domain/sub2仍然可以正常工作是。
当我尝试像这样使用 ReverseProxy 时
<VirtualHost *:80>
DocumentRoot "D:/WAMP/www"
ServerName domain
ProxyPass / http://domain/main/
ProxyPassReverse / http://domain/main/
ErrorLog "logs/error.log"
CustomLog "logs/access.log" common
</VirtualHost>
它适用于第一个选项。但是,尝试访问http://domain/sub1或http://domain/sub2会给我“从远程服务器读取错误”...
我试图添加类似
ProxyPass /sub1/ http://domain/sub1/
ProxyPassReverse /sub1/ http://domain/sub1/
但没有任何运气。
任何人都可以对此提供任何建议吗?谢谢!