У меня есть следующий прокси-сервер Apache httpd:
<VirtualHost *:80>
DocumentRoot "/dados/www/_sistemas"
ServerName mydomain
<Directory "/dados/www/_sistemas">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Allow from all
</Directory>
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /reunioes http://anotherhttpdserver/sistemas/reunioes/web
ProxyPassReverse /reunioes http://anotherhttpdserver/sistemas/reunioes/web
</VirtualHost>
Когда я пытаюсь http://mydomain/reunioes,, он перенаправляется на http://mydomain/sistemas/reunioes/web
Как решить эту проблему?